We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c2f11d commit 6ab7cbdCopy full SHA for 6ab7cbd
.github/workflows/ci.yml
@@ -5,6 +5,7 @@ on:
5
push:
6
branches:
7
- main
8
+ - maint-0.10.x
9
tags:
10
- '*'
11
paths:
@@ -93,7 +94,7 @@ jobs:
93
94
github-token: ${{ secrets.GITHUB_TOKEN }}
95
gh-pages-branch: 'gh-benchmarks'
96
# Make a commit only if main
- auto-push: ${{ github.ref == 'refs/heads/main' }}
97
+ auto-push: ${{ github.ref == 'refs/heads/maint-0.10.x' }}
98
99
publish:
100
needs: [tests]
@@ -132,7 +133,7 @@ jobs:
132
133
134
publish-docker:
135
- if: github.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
136
+ if: github.ref == 'refs/heads/maint-0.10.x' || startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
137
runs-on: ubuntu-latest
138
steps:
139
- name: Checkout
0 commit comments