Skip to content

Commit a0b3954

Browse files
authored
Merge pull request #180 from Integration-Automation/dev
Fix stable CI publish job being skipped
2 parents 1155cf5 + a522d80 commit a0b3954

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/stable.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118

119119
publish:
120120
needs: test
121-
if: github.event_name == 'push' && github.ref == 'refs/heads/stable'
121+
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
122122
runs-on: ubuntu-latest
123123
permissions:
124124
contents: write
@@ -182,8 +182,8 @@ jobs:
182182
git add pyproject.toml
183183
git commit -m "Bump version to ${{ steps.bump.outputs.new_version }} [skip ci]"
184184
git tag "v${{ steps.bump.outputs.new_version }}"
185-
git pull --rebase origin stable
186-
git push origin stable
185+
git pull --rebase origin main
186+
git push origin main
187187
git push origin "v${{ steps.bump.outputs.new_version }}"
188188
189189
- name: Create GitHub Release

0 commit comments

Comments
 (0)