Skip to content

Commit 9279d32

Browse files
committed
Fetch a working version of the aws cli
1 parent 7733236 commit 9279d32

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ jobs:
6767
env:
6868
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6969

70+
- name: Install AWS CLI
71+
run: |
72+
python -m pip install --upgrade pip
73+
pip install awscli==1.36.40
74+
7075
- name: Sync to S3
7176
if: ${{ env.SHOULD_DEPLOY == 'true' }}
7277
run: |

.github/workflows/delete-deployed-pr.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
# PRs are only deployed if the PR branch is not in a fork
1919
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
2020
steps:
21+
22+
- name: Install AWS CLI
23+
run: |
24+
python -m pip install --upgrade pip
25+
pip install awscli==1.36.40
26+
2127
- run: aws --endpoint-url https://s3.cern.ch s3 rm --recursive s3://root/${PR_NUMBER:?}
2228
env:
2329
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}

0 commit comments

Comments
 (0)