From ee8d3c51466be93e334e2209d0570eab34b30d74 Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Mon, 6 Jan 2025 15:22:31 +0100 Subject: [PATCH] ci: release: fix AWS cfn template permissions (#12576) Signed-off-by: Marc 'risson' Schmitt --- .github/workflows/release-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 47670d8605..5456d4defe 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -188,8 +188,8 @@ jobs: aws-region: ${{ env.AWS_REGION }} - name: Upload template run: | - aws s3 cp website/docs/install-config/install/aws/template.yaml s3://authentik-cloudformation-templates/authentik.ecs.${{ github.ref }}.yaml - aws s3 cp website/docs/install-config/install/aws/template.yaml s3://authentik-cloudformation-templates/authentik.ecs.latest.yaml + aws s3 cp --acl=public-read website/docs/install-config/install/aws/template.yaml s3://authentik-cloudformation-templates/authentik.ecs.${{ github.ref }}.yaml + aws s3 cp --acl=public-read website/docs/install-config/install/aws/template.yaml s3://authentik-cloudformation-templates/authentik.ecs.latest.yaml test-release: needs: - build-server