File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff line change 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 }}
You can’t perform that action at this time.
0 commit comments