From ea9630a3aa1e99f92237c22fe1decb65094b9d87 Mon Sep 17 00:00:00 2001 From: Philip Ellis Date: Tue, 5 Dec 2023 13:14:02 -0600 Subject: [PATCH] updated name --- .github/workflows/infra-deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/infra-deploy.yml b/.github/workflows/infra-deploy.yml index 626277f7262..b7e1bb87bc5 100644 --- a/.github/workflows/infra-deploy.yml +++ b/.github/workflows/infra-deploy.yml @@ -53,7 +53,11 @@ jobs: - name: run SAM build run: | sam build - sam deploy --no-confirm-changeset --no-fail-on-empty-changeset --stack-name $STACK --s3_prefix $STACK + sam deploy --no-confirm-changeset --no-fail-on-empty-changeset --stack-name $STACK --s3-prefix $STACK + - name: Get S3 bucket location + run: | + export S3_BUCKET=$(aws cloudformation describe-stacks --stack-name $STACK --query "Stacks[0].Outputs[?OutputKey=='DeveloperSailpointWebS3BucketName'].OutputValue" --output text) + echo "S3_BUCKET=$S3_BUCKET" >> $GITHUB_ENV # Install and build Developer Community site - name: Build Developer Community site run: | @@ -61,10 +65,6 @@ jobs: npm ci npm run gen-api-docs-all npm run build - - name: Get S3 bucket location - run: | - export S3_BUCKET=$(aws cloudformation describe-stacks --stack-name $STACK --query "Stacks[0].Outputs[?OutputKey=='DeveloperSailpointWebS3BucketName'].OutputValue" --output text) - echo "S3_BUCKET=$S3_BUCKET" >> $GITHUB_ENV # push these files to AWS - name: Copy files to the test website with the AWS CLI run: |