diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b40da5a..6cf5223 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,21 @@ jobs: uses: borales/actions-yarn@v4 with: cmd: build + - name: Make zip + uses: thedoctor0/zip-release@0.7.5 + with: + command: "mkdir -p release" + type: zip + directory: dist + filename: release/time-card-extension.zip + - name: Make tar + uses: thedoctor0/zip-release@0.7.5 + with: + command: "mkdir -p release" + type: tar + directory: dist + filename: release/time-card-extension.tar.gz - name: Release uses: softprops/action-gh-release@v1 with: - files: dist/* + files: dist/release/*