Install AWS CLI tools in final build step (#2873)

This commit is contained in:
Stefan Agner 2023-10-27 21:04:17 +02:00 committed by GitHub
parent 6e8568c666
commit 91e82e40d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -262,6 +262,16 @@ jobs:
email: ${{ secrets.GIT_EMAIL }}
token: ${{ secrets.GIT_TOKEN }}
- name: Setup Python version ${{ env.PYTHON_VERSION }}
if: ${{ github.event_name != 'release' }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install AWS CLI
if: ${{ github.event_name != 'release' }}
run: pip install awscli
- name: Regenerate artifacts index
if: ${{ github.event_name != 'release' }}
env: