Skip to content

Commit

Permalink
i18n(pt-BR): Updated guides/deploy/aws.mdx (withastro#4384)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alynva authored Aug 26, 2023
1 parent 40af0a3 commit c0f13f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/content/docs/pt-br/guides/deploy/aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ Há muitas maneiras de configurar continuous deployment com a AWS. Uma possibili
"Action": [
"s3:PutObject",
"s3:ListBucket",
"s3:DeleteObject",
"cloudfront:CreateInvalidation"
],
"Resource": [
Expand Down Expand Up @@ -246,7 +247,7 @@ Há muitas maneiras de configurar continuous deployment com a AWS. Uma possibili
- name: Build application
run: npm run build
- name: Deploy to S3
run: aws s3 sync ./dist/ s3://${{ secrets.BUCKET_ID }}
run: aws s3 sync --delete ./dist/ s3://${{ secrets.BUCKET_ID }}
- name: Create CloudFront invalidation
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.DISTRIBUTION_ID }} --paths "/*"
```
Expand Down

0 comments on commit c0f13f0

Please sign in to comment.