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 e689ddc commit 9bc9b43Copy full SHA for 9bc9b43
.github/workflows/conda-package.yml
@@ -1,6 +1,9 @@
1
name: Conda package
2
3
-on: push
+on:
4
+ push:
5
+ branches:
6
+ tags:
7
8
env:
9
PACKAGE_NAME: dpctl
@@ -215,7 +218,7 @@ jobs:
215
218
216
219
upload_linux:
217
220
needs: test_linux
- if: ${{ github.ref == 'refs/heads/master' }}
221
+ if: ${{ github.ref }} == 'refs/heads/master' || ${{ github.ref }} == 'refs/heads/release*'
222
runs-on: ubuntu-latest
223
strategy:
224
matrix:
@@ -240,7 +243,7 @@ jobs:
240
243
241
244
upload_windows:
242
245
needs: test_windows
246
247
runs-on: windows-latest
248
249
0 commit comments