Skip to content

Commit 4c56c30

Browse files
committed
fix(publish): checkout main branch
1 parent 113fa75 commit 4c56c30

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pypi-publish.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
2727
- name: Commit updated pyproject.toml
2828
run: |
29-
git fetch origin main
30-
git checkout main
29+
git fetch origin master
30+
git checkout master
3131
git config user.name "GitHub Actions"
3232
git config user.email "[email protected]"
3333
git add pyproject.toml
3434
git commit -m "Bump version to ${{ env.version }}"
35-
git push origin main
35+
git push origin master
3636
working-directory: src/python
3737

3838
- name: Install dependencies

0 commit comments

Comments
 (0)