Skip to content

Commit

Permalink
feat: add deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
Onxi95 committed Apr 29, 2024
1 parent c9cd34c commit 3637356
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Deploy Website

on:
push:
branches: ["main"]

workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Configure AWS
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
- name: Install Modules
run: npm ci
- name: Build App
run: npm run build
- name: Deploy to S3
run: |
aws s3 sync out/_next "s3://${{ secrets.BUCKET_NAME }}/_next" \
--cache-control 'public,max-age=31536000'
aws s3 rm s3://${{ secrets.BUCKET_NAME }} \
--recursive \
--exclude '_next/*'
aws s3 sync out "s3://${{ secrets.BUCKET_NAME }}" \
--exclude 'out/_next/*' \
--cache-control 'public,no-cache,no-store,must-revalidate'
- name: Create Cloudfront Invalidation
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.DISTRIBUTION_ID }} --paths "/*"

0 comments on commit 3637356

Please sign in to comment.