From e113162bdfda94af93a312fc1d731399ab729256 Mon Sep 17 00:00:00 2001 From: Luca Guerra Date: Tue, 12 Mar 2024 16:36:46 +0100 Subject: [PATCH] fix(gha): fix typo in release workflow Signed-off-by: Luca Guerra --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c058fb4..7cb7947 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -90,5 +90,5 @@ jobs: - name: Upload files to S3 if: ${{ needs.release-settings.outputs.is_latest == 'true' }} run: | - aws cloudfront create-invalidation --distribution-id $${{ env.AWS_DISTRIBUTION_ID }} --paths "/*" + aws cloudfront create-invalidation --distribution-id ${{ env.AWS_DISTRIBUTION_ID }} --paths "/*" aws s3 sync ./dist s3://${{ env.AWS_S3_BUCKET }}/ --delete