Skip to content

Merge branch 'sierra-moxon/master' into update-kubernetes-settings #27

Merge branch 'sierra-moxon/master' into update-kubernetes-settings

Merge branch 'sierra-moxon/master' into update-kubernetes-settings #27

name: Publish Astro site in `frontend` to GitHub Pages
on:
push:
release:
types: [released]
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧
working-directory: frontend
run: |
npm ci
npm run build
- name: Create a `.nojekyll` file.
run: |
touch frontend/dist/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: frontend/dist # The folder the action should deploy.