Fix policyNote initialization in EventCreateForm #39
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: deploy-client | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| deploy: | |
| name: Deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20.11.1" | |
| - name: Build & Export | |
| env: | |
| # Build-time env for Vite. Must be set so the deployed static site calls the backend API. | |
| # Configure this in GitHub repo Settings -> Secrets/Variables. | |
| VITE_API_BASE_URL: ${{ vars.VITE_API_BASE_URL }} | |
| run: | | |
| yarn install | |
| yarn build | |
| - name: Deploy to S3 and Invalidate Cloudfront in prod mode | |
| env: | |
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| AWS_REGION: ap-southeast-2 | |
| run: | | |
| aws s3 sync ./dist s3://waffle-toyproject-team7-deploy --delete | |
| aws cloudfront create-invalidation --distribution-id E2A48ET2Z3ATWU --paths "/*"\ |