fix: install AWS CLI if not present before publishing assets #26

Merged
Michael.Seele merged 1 commit from bugfix/aws-sdk into main 2026-05-11 15:08:36 +00:00

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: