Skip to content

Commit

Permalink
Deploy React app under a different aws profile
Browse files Browse the repository at this point in the history
  • Loading branch information
nbkhope committed Jun 26, 2024
1 parent b2aedc0 commit 86643a6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,9 @@ jobs:
- run: mkdir -p dist && cp src/*.html dist && cp src/*.css dist && cp src/*.js dist
- run: aws s3 cp dist/ s3://nbktechworld/bootcamp-2024-06-17 --endpoint-url=http://us-southeast-1.linodeobjects.com --profile nbktechworld --recursive --acl public-read
- run: cd web-client && npm install
- run: echo "PUBLIC_URL=/bootcamp-2024-06-17/web-client" > web-client/.env
- run: cd web-client && npm run build && aws s3 cp build/ s3://nbktechworld/bootcamp-2024-06-17/web-client --endpoint-url=http://us-southeast-1.linodeobjects.com --profile nbktechworld --recursive --acl public-read
- run: aws configure set region us-east-1 --profile full-stack-web-dev-bootcamp
- run: aws configure set aws_access_key_id ${{ secrets.FSWDB_AWS_ACCESS_KEY_ID }} --profile full-stack-web-dev-bootcamp
- run: aws configure set aws_secret_access_key ${{ secrets.FSWDB_AWS_SECRET_ACCESS_KEY }} --profile full-stack-web-dev-bootcamp
# - run: echo "PUBLIC_URL=/bootcamp-2024-06-17/web-client" > web-client/.env
- run: aws s3 website s3://full-stack-web-dev-bootcamp --index-document index.html --error-document index.html --endpoint-url=http://us-southeast-1.linodeobjects.com --profile full-stack-web-dev-bootcamp
- run: cd web-client && npm run build && aws s3 cp build/ s3://full-stack-web-dev-bootcamp --endpoint-url=http://us-southeast-1.linodeobjects.com --profile full-stack-web-dev-bootcamp --recursive --acl public-read

0 comments on commit 86643a6

Please sign in to comment.