File tree 2 files changed +14
-46
lines changed
2 files changed +14
-46
lines changed Original file line number Diff line number Diff line change 20
20
env :
21
21
ANACONDA_TOKEN : ${{ secrets.ANACONDA_TOKEN }}
22
22
ANACONDA_USER : ${{ secrets.ANACONDA_USER }}
23
+ OS_NAME : linux
23
24
24
25
jobs :
25
26
@@ -30,15 +31,23 @@ jobs:
30
31
31
32
Upload :
32
33
needs : Build
33
- if : always()
34
+ if : github.event_name != 'pull_request' && github.ref == 'refs/heads/master'
34
35
runs-on : ubuntu-20.04
35
- env :
36
- OS_NAME : linux
37
36
steps :
38
37
- uses : actions/checkout@v3
39
- - run : pip install urllib3
40
38
- run : |
41
39
# Required internally by the scripts to locate other scripts.
42
40
export CI_SCRIPTS_PATH="$(pwd)/ci"
43
41
./ci/install.sh
44
- ./ci/wait-for-statuses.py
42
+ ./ci/upload-packages.sh
43
+
44
+
45
+ Cleanup :
46
+ runs-on : ubuntu-20.04
47
+ steps :
48
+ - uses : actions/checkout@v3
49
+ - run : |
50
+ # Required internally by the scripts to locate other scripts.
51
+ export CI_SCRIPTS_PATH="$(pwd)/ci"
52
+ ./ci/install.sh
53
+ ./ci/cleanup-anaconda.sh
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments