1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2025-12-20 02:18:37 +00:00

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

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: