Skip to content

Added on:push trigger for debugging. #14

Added on:push trigger for debugging.

Added on:push trigger for debugging. #14

name: Publish Astro site in `website` 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: website
run: |
npm ci
npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: website/dist # The folder the action should deploy.