From ec4f1ee6e95131149c5e455fd4a6b2c0dd8e60ef Mon Sep 17 00:00:00 2001 From: vickytechkey Date: Sat, 5 Sep 2026 15:21:29 +0530 Subject: [PATCH] chore: update AWS CLI installation to use apk on Alpine-based runners --- .forgejo/workflows/ci-cd-beta.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci-cd-beta.yml b/.forgejo/workflows/ci-cd-beta.yml index 719b065..75b3cdd 100644 --- a/.forgejo/workflows/ci-cd-beta.yml +++ b/.forgejo/workflows/ci-cd-beta.yml @@ -42,8 +42,7 @@ jobs: - name: Install AWS CLI run: | - apt-get update -y - apt-get install -y awscli + apk add --no-cache aws-cli - name: Deploy to S3 run: aws s3 sync dist/ s3://${{ secrets.AWS_S3_BUCKET_BETA }} --delete