Skip to content

Merge branch 'main' of github.com:Onxi95/react-three-fiber #9

Merge branch 'main' of github.com:Onxi95/react-three-fiber

Merge branch 'main' of github.com:Onxi95/react-three-fiber #9

Workflow file for this run

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: PNPM
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Modules
run: pnpm i
- name: Build App
run: pnpm build
- name: Deploy to S3
run: |
aws s3 sync dist "s3://${{ secrets.BUCKET_NAME }}" \
--cache-control 'public,no-cache,no-store,must-revalidate'
- name: Create Cloudfront Invalidation
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.DISTRIBUTION_ID }} --paths "/*"