diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 43045ad..ef264a5 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -25,12 +25,14 @@ jobs: run: bun install - name: Build Kaspian run: bun run build + - name: Prepare Release Asset + run: zip -r dist.zip dist - name: Upload Release Asset uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ github.event.release.upload_url }} - asset_path: "dist/" - asset_name: "unpacked-extension" + asset_path: dist.zip + asset_name: unpacked-extension asset_content_type: application/zip \ No newline at end of file