Skip to content

Commit 88395d8

Browse files
committed
chore: add missing deps install step in release workflow
1 parent e133cf2 commit 88395d8

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ jobs:
1919
with:
2020
bun-version: latest
2121

22-
- name: Generate changelogs
23-
run: bunx changelogithub
24-
env:
25-
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
22+
- name: Install dependencies
23+
run: |
24+
bun install
2625
2726
- name: Publish
2827
run: |
@@ -32,3 +31,8 @@ jobs:
3231
bun publish
3332
env:
3433
BUN_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
34+
35+
- name: Generate changelogs
36+
run: bunx changelogithub
37+
env:
38+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)