Skip to content

Commit

Permalink
Fix zip files
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-sumi-k committed Feb 9, 2024
1 parent 187398b commit 0740322
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deploy-frontend-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
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
cd .output/server && zip server.zip -r . && ls && aws s3 sync server.zip s3://canopas-website-static && cd ../..
cd .output/server && ls && zip server.zip -r . && ls && aws s3 sync server.zip s3://canopas-website-static && cd ../..
ls
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"
Expand Down

0 comments on commit 0740322

Please sign in to comment.