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 820259e commit 2291f78Copy full SHA for 2291f78
.github/workflows/conda-package.yml
@@ -215,7 +215,7 @@ jobs:
215
216
upload_linux:
217
needs: test_linux
218
- if: ${{ github.ref }} == 'refs/heads/master' || ${{ github.ref }} == 'refs/heads/release*'
+ if: ${{github.ref == 'refs/heads/master' || (startsWith(github.ref, 'refs/heads/release') == true)}}
219
runs-on: ubuntu-latest
220
strategy:
221
matrix:
@@ -240,7 +240,7 @@ jobs:
240
241
upload_windows:
242
needs: test_windows
243
244
runs-on: windows-latest
245
246
0 commit comments