fix: update readme #2
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 to Dev Environment | |
| on: | |
| push: | |
| branches: [develop] | |
| pull_request: | |
| branches: [develop] | |
| concurrency: | |
| group: deploy-dev-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| NODE_VERSION: "18" | |
| BUILD_DIR: "out" | |
| jobs: | |
| build-dev: | |
| name: Build and Test (Dev) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Type check | |
| run: npm run type-check --if-present | |
| - name: Lint | |
| run: npm run lint | |
| - name: Unit tests | |
| run: npm test -- --ci | |
| - name: Build static site | |
| run: | | |
| npm run build | |
| npm run postexport | |
| env: | |
| # Build-time envs used in next.config.js | |
| NET: 'sepolia' | |
| INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }} | |
| ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }} | |
| GA4_TAG_ID: ${{ secrets.GA4_TAG_ID }} | |
| WOGAA_ENV: ${{ secrets.WOGAA_ENV }} | |
| TRUSTED_TLDS: ${{ secrets.TRUSTED_TLDS }} | |
| - name: Upload build artifact (Dev) | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: static-site-dev | |
| path: ${{ env.BUILD_DIR }} | |
| deploy-dev: | |
| name: Deploy to S3 (Dev) | |
| needs: build-dev | |
| if: github.event_name == 'push' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download build artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: static-site-dev | |
| path: ${{ env.BUILD_DIR }} | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| aws-region: ${{ secrets.AWS_REGION }} | |
| - name: Select target bucket | |
| id: bucket | |
| run: | | |
| echo "bucket=${S3_BUCKET_DEV}" >> $GITHUB_OUTPUT | |
| env: | |
| S3_BUCKET_DEV: ${{ secrets.S3_BUCKET_DEV }} | |
| - name: Sync static assets with long cache | |
| run: | | |
| aws s3 sync $BUILD_DIR s3://${{ steps.bucket.outputs.bucket }} \ | |
| --delete \ | |
| --exclude "*" \ | |
| --include "_next/*" \ | |
| --include "static/*" \ | |
| --cache-control "public, max-age=31536000, immutable" | |
| - name: Sync HTML and other assets with no-cache | |
| run: | | |
| aws s3 sync $BUILD_DIR s3://${{ steps.bucket.outputs.bucket }} \ | |
| --delete \ | |
| --exclude "_next/*" \ | |
| --exclude "static/*" \ | |
| --cache-control "no-cache, no-store, must-revalidate" | |
| - name: Invalidate CloudFront | |
| env: | |
| CLOUDFRONT_DISTRIBUTION_ID_DEV: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID_DEV }} | |
| if: ${{ env.CLOUDFRONT_DISTRIBUTION_ID_DEV != '' }} | |
| run: | | |
| aws cloudfront create-invalidation \ | |
| --distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID_DEV }} \ | |
| --paths "/*" |