From c8aafd7afc695fabebb40d06344dace9be7b0e66 Mon Sep 17 00:00:00 2001 From: Aidan Steele Date: Thu, 13 Feb 2020 20:08:16 +1100 Subject: [PATCH] Use a shell to expand env var --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b75aa74..23ad7ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,11 +29,13 @@ jobs: S3_BUCKET: ${{ secrets.S3_BUCKET }} with: args: > + sh -c " sam package --template-file app.yml --output-template-file packaged.yml --s3-bucket $S3_BUCKET - + " + - name: sam publish uses: docker://awsteele/samcli with: