make app settings use query store #87
This file contains 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 Next Version | |
on: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Setup Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
- name: Redirect 404 to Index for SPA | |
run: cp dist/index.html dist/404.html | |
# - name: Deploy | |
# uses: reggionick/s3-deploy@v4 | |
# with: | |
# folder: dist | |
# bucket: "${{ secrets.S3_BUCKET }}" | |
# bucket-region: us-east-1 | |
# dist-id: "${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }}" | |
# invalidation: / | |
# delete-removed: true | |
# no-cache: true | |
# private: true | |
# files-to-include: "{.*/**,**}" | |
- name: Deploy nsite | |
run: npx -y nsite-cli upload dist --verbose --purge --privatekey ${{ secrets.NSITE_KEY }} |