We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 51d6863 + 50f155a commit 38e3da3Copy full SHA for 38e3da3
1 file changed
.github/workflows/release.yml
@@ -24,6 +24,11 @@ jobs:
24
- name: 📦 Install dependencies
25
run: bun install
26
27
+ - name: 🧑 Configure Git identity
28
+ run: |
29
+ git config --local user.name "github-actions[bot]"
30
+ git config --local user.email "github-actions[bot]@users.noreply.github.com"
31
+
32
- name: 🏷️ Bump version & generate changelog
33
id: bump
34
run: |
@@ -36,8 +41,6 @@ jobs:
36
41
- name: 🚀 Push changes and tags
37
42
if: steps.bump.outputs.prev_version != steps.bump.outputs.new_version
38
43
39
- git config user.name "github-actions[bot]"
40
- git config user.email "github-actions[bot]@users.noreply.github.com"
44
git push origin HEAD:${{ github.ref }}
45
git push --tags
46
0 commit comments