diff options
-rw-r--r-- | .github/workflows/bun-release.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/bun-release.yml b/.github/workflows/bun-release.yml index eabc24c2f..8bdb67e7e 100644 --- a/.github/workflows/bun-release.yml +++ b/.github/workflows/bun-release.yml @@ -28,6 +28,12 @@ jobs: TAG="${TAG:-"${{ github.event.release.tag_name }}"}" echo "Setup tag: ${TAG}" echo "TAG=${TAG}" >> ${GITHUB_ENV} + - id: setup-gpg + name: Setup GPG + uses: crazy-max/ghaction-import-gpg@v5 + with: + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} + passphrase: ${{ secrets.GPG_PASSPHRASE }} - id: setup-bun name: Setup Bun uses: oven-sh/setup-bun@v1 @@ -103,9 +109,7 @@ jobs: bun-version: canary - id: bun-install name: Install Dependencies - run: | - bun upgrade --canary - bun install + run: bun install - id: bun-run name: Build run: bun run build |