We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8895154 + d1e568d commit e096fa6Copy full SHA for e096fa6
.github/workflows/pypi.yml
@@ -31,7 +31,7 @@ jobs:
31
uses: pypa/gh-action-pypi-publish@release/v1
32
- name: Commit new version
33
run: |
34
- PATH=($(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep "_version\.py$"))
+ PATH=($(git diff --name-only ${{ github.event.before }} ${{ github.sha }}))
35
git config --local user.name "$GITHUB_ACTOR"
36
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
37
git commit ${PATH} -m 'Bump version' || echo "No changes to commit"
0 commit comments