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 e717d1d commit fdd125aCopy full SHA for fdd125a
.github/workflows/Publish-Package.yml
@@ -57,15 +57,14 @@ jobs:
57
poetry version prepatch
58
59
- name: Commit files
60
- if: ${{ github.event.release.target_commitish == 'main' }}
61
run: |
62
git config --local user.email "[email protected]"
63
git config --local user.name "GitHub Action"
64
git pull --tags -f
65
git commit -m "Bump package version" -a
+ git config credential.helper '!f() { sleep 1; echo "username=oauth2"; echo "password=${GIT_PASSWORD}"; }; f'
66
67
- name: Push changes
68
69
uses: CasperWA/push-protected@v2
70
with:
71
token: ${{ secrets.ADMIN_PAT }}
0 commit comments