Skip to content

Commit 9d7c17b

Browse files
authored
Update release.yml
Signed-off-by: Scott Milliorn <[email protected]>
1 parent 2d80125 commit 9d7c17b

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,10 @@ jobs:
2626
- name: Install dependencies
2727
run: npm ci
2828

29-
- name: Run release
30-
run: npm run release
31-
env:
32-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33-
34-
- name: Push changes
29+
- name: Configure Git
3530
run: |
36-
git push --follow-tags origin main
37-
env:
38-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31+
git config --global user.name "github-actions[bot]"
32+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
33+
34+
- name: Run release
35+
run: npm run releas

0 commit comments

Comments
 (0)