We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d80125 commit 9d7c17bCopy full SHA for 9d7c17b
.github/workflows/release.yml
@@ -26,13 +26,10 @@ jobs:
26
- name: Install dependencies
27
run: npm ci
28
29
- - name: Run release
30
- run: npm run release
31
- env:
32
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
-
34
- - name: Push changes
+ - name: Configure Git
35
run: |
36
- git push --follow-tags origin main
37
38
+ git config --global user.name "github-actions[bot]"
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
+
+ - name: Run release
+ run: npm run releas
0 commit comments