Skip to content

Commit 041df39

Browse files
committed
ci: rm wait-for-statuses.py
1 parent 6958098 commit 041df39

File tree

2 files changed

+14
-46
lines changed

2 files changed

+14
-46
lines changed

.github/workflows/Upload.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ on:
2020
env:
2121
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
2222
ANACONDA_USER: ${{ secrets.ANACONDA_USER }}
23+
OS_NAME: linux
2324

2425
jobs:
2526

@@ -30,15 +31,23 @@ jobs:
3031

3132
Upload:
3233
needs: Build
33-
if: always()
34+
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master'
3435
runs-on: ubuntu-20.04
35-
env:
36-
OS_NAME: linux
3736
steps:
3837
- uses: actions/checkout@v3
39-
- run: pip install urllib3
4038
- run: |
4139
# Required internally by the scripts to locate other scripts.
4240
export CI_SCRIPTS_PATH="$(pwd)/ci"
4341
./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

ci/wait-for-statuses.py

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)