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.
2 parents 0ef1477 + e05d87d commit 7a6d331Copy full SHA for 7a6d331
.github/workflows/release-please.yml
@@ -108,6 +108,15 @@ jobs:
108
# with:
109
# github-token: ${{ secrets.GITHUB_TOKEN }}
110
111
+ - name: push stamped release
112
+ if: ${{ steps.release.outputs.release_created }}
113
+ run: |
114
+ git config user.name github-actions[bot]
115
+ git config user.email 4104672+github-actions[bot]@users.noreply.github.com
116
+ git remote add gh-token "https://${{ secrets.GITHUB_TOKEN}}@github.com/yargs/yargs.git"
117
+ git commit -a -m 'chore: stamp files for release'
118
+ git push origin
119
+
120
- name: Publish
121
if: ${{ steps.release.outputs.release_created }}
122
env:
0 commit comments