Fix lambda zip #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DeployFrontendTestLambda | |
on: | |
push: | |
jobs: | |
deploy-backend-prod: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/github-actions-frontend-access | |
aws-region: ap-south-1 | |
- name: Build frontend and copy zip to S3 | |
run: | | |
cd nuxt-frontend | |
sed -i "s|VITE_IFRAMELY_KEY_VALUE|${{ secrets.IFRAMELY_KEY }}|g" config.js | |
sed -i "s|VITE_RECAPTCHA_SITE_KEY_VALUE|${{ secrets.RECAPTCHA_SITE_KEY }}|g" config.js | |
sed -i "s|RESOURCES_URL|${{ secrets.RESOURCES_URL }}|g" config.js | |
sed -i "s|CLOUDFRONT_URL_VALUE|${{ secrets.CLOUDFRONT_URL_VALUE }}|g" config.js | |
sh ./../deploy/generate-sitemap.sh https://dev-stack.canopas.com https://dev-stack-api.canopas.com | |
yarn install --frozen-lockfile && yarn build | |
zip -r server.zip ./.output/server aws s3 cp server.zip s3://canopas-website-static | |
aws s3 sync ./.output/public s3://canopas-website-static --exclude "*.js" | |
aws s3 sync ./.output/public s3://canopas-website-static --include "*.js" --content-type "application/javascript" | |
- name: Deploy cloudformation stack | |
id: canopas-website-prod-lambda-stack-frontend | |
uses: aws-actions/aws-cloudformation-github-deploy@v1 | |
with: | |
name: canopas-website-prod-lambda-stack-frontend | |
template: infrastructure/frontend-test.yml | |
capabilities: CAPABILITY_IAM,CAPABILITY_NAMED_IAM, CAPABILITY_AUTO_EXPAND | |
timeout-in-minutes: "10" | |
no-fail-on-empty-changeset: "1" |