From d9c9fe973a9c0546577bf2f7b84a1533607a8f88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Ciornavei?= Date: Thu, 7 Mar 2024 23:13:55 -0300 Subject: [PATCH] remove external quotes --- .github/workflows/workflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 477ba2e..6eaac88 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -8,7 +8,7 @@ on: jobs: # deploy-api: - # name: deploy-api + # name: Deploy Server Api # runs-on: ubuntu-latest # steps: # # This step checks out a copy of your repository. @@ -62,7 +62,7 @@ jobs: # if: success() deploy-web: - name: deploy-web + name: Deploy Web App runs-on: ubuntu-latest steps: # This step checks out a copy of your repository. @@ -125,9 +125,9 @@ jobs: if: success() # This step deploys your application to AWS Lambda using the Serverless Framework. - - name: Release application aws s3 and invalidate cloud formation cache + - name: Release application on AWS S3 and invalidate CloudFront cache run: | - S3_DOMAIN="${APP_NAME}.$([ "${BRANCH}" != "production" ] && echo "${BRANCH}.")${DOMAIN}" + S3_DOMAIN=${APP_NAME}.$([ "${BRANCH}" != "production" ] && echo "${BRANCH}.")${DOMAIN} echo "S3_DOMAIN=${S3_DOMAIN}" ls -R frontend/build/ aws s3 sync frontend/build/ s3://${S3_DOMAIN}