Skip to content

Commit 38e3da3

Browse files
authored
Merge pull request #2 from Tracktor/feat/update-workflow
feat: update automation
2 parents 51d6863 + 50f155a commit 38e3da3

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
- name: 📦 Install dependencies
2525
run: bun install
2626

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+
2732
- name: 🏷️ Bump version & generate changelog
2833
id: bump
2934
run: |
@@ -36,8 +41,6 @@ jobs:
3641
- name: 🚀 Push changes and tags
3742
if: steps.bump.outputs.prev_version != steps.bump.outputs.new_version
3843
run: |
39-
git config user.name "github-actions[bot]"
40-
git config user.email "github-actions[bot]@users.noreply.github.com"
4144
git push origin HEAD:${{ github.ref }}
4245
git push --tags
4346

0 commit comments

Comments
 (0)