We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1155cf5 + a522d80 commit a0b3954Copy full SHA for a0b3954
1 file changed
.github/workflows/stable.yml
@@ -118,7 +118,7 @@ jobs:
118
119
publish:
120
needs: test
121
- if: github.event_name == 'push' && github.ref == 'refs/heads/stable'
+ if: github.event_name == 'push' && github.ref == 'refs/heads/main'
122
runs-on: ubuntu-latest
123
permissions:
124
contents: write
@@ -182,8 +182,8 @@ jobs:
182
git add pyproject.toml
183
git commit -m "Bump version to ${{ steps.bump.outputs.new_version }} [skip ci]"
184
git tag "v${{ steps.bump.outputs.new_version }}"
185
- git pull --rebase origin stable
186
- git push origin stable
+ git pull --rebase origin main
+ git push origin main
187
git push origin "v${{ steps.bump.outputs.new_version }}"
188
189
- name: Create GitHub Release
0 commit comments