Skip to content

Commit

Permalink
Merge pull request #61 from andreciornavei/develop
Browse files Browse the repository at this point in the history
remove external quotes
  • Loading branch information
andreciornavei authored Mar 8, 2024
2 parents a9a6cfa + d9c9fe9 commit 3a47169
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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}
Expand Down

0 comments on commit 3a47169

Please sign in to comment.