Skip to content

Commit

Permalink
Merge pull request #4266 from GordonSmith/RELEASE_PLEASE_GH_ACTIONS
Browse files Browse the repository at this point in the history
fix: Publish step failing
  • Loading branch information
GordonSmith authored Oct 23, 2024
2 parents 0ef1477 + e05d87d commit 7a6d331
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,15 @@ jobs:
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}

- name: push stamped release
if: ${{ steps.release.outputs.release_created }}
run: |
git config user.name github-actions[bot]
git config user.email 4104672+github-actions[bot]@users.noreply.github.com
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN}}@github.com/yargs/yargs.git"
git commit -a -m 'chore: stamp files for release'
git push origin
- name: Publish
if: ${{ steps.release.outputs.release_created }}
env:
Expand Down

0 comments on commit 7a6d331

Please sign in to comment.