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 f8c284a commit 600446bCopy full SHA for 600446b
.github/workflows/release-please.yml
@@ -84,6 +84,15 @@ jobs:
84
# with:
85
# github-token: ${{ secrets.GITHUB_TOKEN }}
86
87
+ - name: push stamped release
88
+ if: ${{ steps.release.outputs.release_created }}
89
+ run: |
90
+ git config user.name github-actions[bot]
91
+ git config user.email 4104672+github-actions[bot]@users.noreply.github.com
92
+ git remote add gh-token "https://${{ secrets.GITHUB_TOKEN}}@github.com/${{ github.repository }}.git"
93
+ git commit -a -m 'chore: stamp files for release'
94
+ git push origin
95
+
96
- name: Publish
97
if: ${{ steps.release.outputs.release_created }}
98
env:
0 commit comments