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 202d5cf commit 21829d1Copy full SHA for 21829d1
.github/workflows/release.yml
@@ -38,6 +38,15 @@ jobs:
38
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
39
run: npx semantic-release
40
41
+ - name: Commit changes from semantic-release
42
+ if: success()
43
+ run: |
44
+ git config --global user.name 'github-actions[bot]'
45
+ git config --global user.email 'github-actions[bot]@users.noreply.github.com'
46
+ git add .
47
+ git commit -m "chore: update package.json for release [skip ci]" || echo "No changes to commit"
48
+ git push origin main
49
+
50
- name: Sync dev branch with main
51
if: success()
52
run: |
0 commit comments