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 0740322 commit ab9587e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-frontend-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ 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 && ls && 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
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
4 changes: 2 additions & 2 deletions nuxt-frontend/pages/[slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ if (status.value !== config.SUCCESS) {
published_time = new Date(post?.value?.published_on).toLocaleTimeString();
await useAsyncData("recommandedBlog", () =>
recStore.loadRecommandedBlog(slug.value, config.SHOW_DRAFT_POSTS)
recStore.loadRecommandedBlog(slug.value, config.SHOW_DRAFT_POSTS),
);
recommandedPosts = filterPostsByCategoryAndTag(
post.value,
recommandedBlog.value
recommandedBlog.value,
);
useHead({
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ module.exports = {
120: "120deg",
135: "135deg",
}),
}
},
);
}),
function ({ addComponents }) {
Expand Down

0 comments on commit ab9587e

Please sign in to comment.