diff options
author | 2023-02-23 17:58:43 -0800 | |
---|---|---|
committer | 2023-02-23 17:58:56 -0800 | |
commit | b5bdde28ed34070cbb1d34d13f414f4c513ee40d (patch) | |
tree | 418aedb31c1cd05d1049fdea82add79b0056b39f | |
parent | f54300578b1edc7f67daddbfae29575cbf305264 (diff) | |
download | bun-b5bdde28ed34070cbb1d34d13f414f4c513ee40d.tar.gz bun-b5bdde28ed34070cbb1d34d13f414f4c513ee40d.tar.zst bun-b5bdde28ed34070cbb1d34d13f414f4c513ee40d.zip |
Fix release workflow
-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 |