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 6788e1c commit 467d207Copy full SHA for 467d207
.github/workflows/deploy-pypi-release.yaml
@@ -38,12 +38,14 @@ jobs:
38
39
- name: Bump version
40
run: |
41
- git config --global user.name 'github-actions'
42
- git config --global user.email '[email protected]'
43
- git add setup.py pyproject.toml src/libcrypto/__init__.py
44
- git add .
45
- git commit -m 'version Update Mode'
46
- git push origin main
+ git config --global user.name 'github-actions'
+ git config --global user.email '[email protected]'
+ git fetch origin main
+ git pull origin main --rebase
+ git add setup.py pyproject.toml src/libcrypto/__init__.py
+ git add .
47
+ git commit -m 'version Update Mode' || echo "No changes to commit"
48
+ git push origin main
49
50
- name: Install dependencies
51
0 commit comments