Skip to content

Commit

Permalink
feat(workflow): switch to bun for changelog generation
Browse files Browse the repository at this point in the history
Updated the GitHub Actions workflow to use bun instead of deno for
changelog generation. This change includes replacing the setup-deno
action with the setup-bun action and updating the command to run
changelogithub using bunx.

BREAKING CHANGE: The workflow now requires bun instead of deno.
  • Loading branch information
ryoppippi committed Aug 27, 2024
1 parent 135d6ef commit 39bb7b9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: denoland/setup-deno@v1
with:
deno-version: ${{ env.DENO_VERSION }}
- run: deno run -A npm:changelogithub
- uses: oven-sh/setup-bun@v2
- run: bunx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 39bb7b9

Please sign in to comment.