fix: install AWS CLI if not present before publishing assets
All checks were successful
validate-shared-actions / validate-shared-actions (pull_request) Successful in 32s
Aikido Security PR Check / Aikido Security Scan (pull_request) Successful in 1m20s

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Michael.Seele@schmalz.de 2026-05-11 13:52:20 +00:00
parent 98fb3d79dd
commit d89b7842e2

View file

@ -21,6 +21,16 @@ inputs:
runs:
using: composite
steps:
- name: Install AWS CLI
shell: bash
run: |
if ! command -v aws &> /dev/null; then
curl -fsSL "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o /tmp/awscliv2.zip
unzip -q /tmp/awscliv2.zip -d /tmp
sudo /tmp/aws/install
rm -rf /tmp/awscliv2.zip /tmp/aws
fi
- name: Publish frontend assets
shell: bash
env: