Skip to content

Commit f2cfa9b

Browse files
committed
Merge branch 'main' into release/v1.0.0
2 parents 57d8323 + e7f6977 commit f2cfa9b

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,28 @@ on:
88
jobs:
99
release:
1010
runs-on: ubuntu-latest
11+
12+
permissions:
13+
contents: write
14+
1115
steps:
1216
- uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
19+
1320
- uses: oven-sh/setup-bun@v2
1421
with:
1522
bun-version: latest
23+
1624
- run: bun install
1725
- run: bun run build
26+
27+
- name: Configure Git
28+
run: |
29+
git config --global user.name "github-actions[bot]"
30+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
31+
1832
- run: bunx bumpp --push --access public
1933
env:
2034
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
35+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)