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 b7b3985 commit c673f8dCopy full SHA for c673f8d
.github/workflows/publish.yml
@@ -34,17 +34,17 @@ jobs:
34
poetry version $VERSION
35
poetry lock
36
37
- - name: Create and Checkout a New Branch
+ - name: Checkout main branch
38
run: |
39
- git checkout -b version-bump-${GITHUB_SHA}
+ git checkout main
40
41
- name: Commit version bump to repository
42
43
git config user.name "GitHub Actions"
44
git config user.email "[email protected]"
45
git add pyproject.toml poetry.lock
46
git commit -m "Bump version to $VERSION"
47
- git push origin version-bump-${GITHUB_SHA}
+ git push origin main
48
49
- name: Build the package and publish to PyPI
50
env:
0 commit comments