File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 38
38
run : conda install conda-build
39
39
- name : Build conda package
40
40
run : |
41
- CHANNELS="-c intel -c defaults --override-channels"
41
+ CHANNELS="-c defaults -c intel --override-channels"
42
42
VERSIONS="--python ${{ matrix.python }}"
43
43
TEST="--no-test"
44
44
conda build \
83
83
- name : Install conda-build
84
84
run : conda install conda-build
85
85
- name : Build conda package
86
- run : conda build --no-test --python ${{ matrix.python }} -c intel -c defaults --override-channels conda-recipe
86
+ run : conda build --no-test --python ${{ matrix.python }} -c defaults -c intel --override-channels conda-recipe
87
87
- name : Upload artifact
88
88
uses : actions/upload-artifact@v2
89
89
with :
@@ -215,7 +215,7 @@ jobs:
215
215
216
216
upload_linux :
217
217
needs : test_linux
218
- if : ${{ github.ref }} == 'refs/heads/master' || ${{ github.ref }} == 'refs/heads/release*'
218
+ if : ${{github.ref == 'refs/heads/master' || (startsWith( github.ref, 'refs/heads/release') == true)}}
219
219
runs-on : ubuntu-latest
220
220
strategy :
221
221
matrix :
@@ -240,7 +240,7 @@ jobs:
240
240
241
241
upload_windows :
242
242
needs : test_windows
243
- if : ${{ github.ref }} == 'refs/heads/master' || ${{ github.ref }} == 'refs/heads/release*'
243
+ if : ${{github.ref == 'refs/heads/master' || (startsWith( github.ref, 'refs/heads/release') == true)}}
244
244
runs-on : windows-latest
245
245
strategy :
246
246
matrix :
You can’t perform that action at this time.
0 commit comments