We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b696a84 commit 04842f0Copy full SHA for 04842f0
.github/workflows/pypi.yml
@@ -37,5 +37,7 @@ jobs:
37
run: |
38
git config --local user.name "$GITHUB_ACTOR"
39
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
40
- git commit $(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep '_version') -m 'Bump version' || echo "No changes to commit"
+ git commit "$(git diff --name-only ${{ github.event.before }} \
41
+ ${{ github.sha }} | grep '_version')" -m 'Bump version' || \
42
+ echo "No changes to commit"
43
git push origin || echo "No changes to commit"
0 commit comments