We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 778db14 commit 5ab39f7Copy full SHA for 5ab39f7
.github/workflows/release.yml
@@ -41,6 +41,11 @@ jobs:
41
- name: Build the project
42
run: pnpm run build
43
44
+ - name: Set up Git user
45
+ run: |
46
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
47
+ git config --global user.name "github-actions[bot]"
48
+
49
- name: Bump version
50
id: versioning
51
run: |
@@ -50,8 +55,6 @@ jobs:
55
56
- name: Commit and tag release
52
57
53
- git config user.name github-actions[bot]
54
- git config user.email 41898282+github-actions[bot]@users.noreply.github.com
58
git add .
59
git commit -m "chore(release): v${{ steps.versioning.outputs.current-version }}"
60
git tag v${{ steps.versioning.outputs.current-version }}
@@ -90,4 +93,3 @@ jobs:
90
93
run: npm publish --access public
91
94
env:
92
95
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
-
0 commit comments