We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f831da commit e7f6977Copy full SHA for e7f6977
1 file changed
.github/workflows/release.yml
@@ -8,14 +8,28 @@ on:
8
jobs:
9
release:
10
runs-on: ubuntu-latest
11
+
12
+ permissions:
13
+ contents: write
14
15
steps:
16
- uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 0
19
20
- uses: oven-sh/setup-bun@v2
21
with:
22
bun-version: latest
23
24
- run: bun install
25
- 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
32
- run: bunx bumpp --push --access public
33
env:
34
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
35
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments