Skip to content

Update GitHub Actions workflow for site deployment #1

Update GitHub Actions workflow for site deployment

Update GitHub Actions workflow for site deployment #1

name: Build and Deploy Site
on:
push:
branches: [ master ]
workflow_dispatch:
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-24.04
steps:
- name: Checkout 🛎️
uses: actions/checkout@v6
- name: Install and Build 🔧
run: |
make setup
make build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: site # The branch the action should deploy to.
folder: site/public # The folder the action should deploy.
clean: true