Initial commit

This commit is contained in:
2026-01-15 07:26:08 +00:00
committed by GitHub
commit 3e9fc6e4e5
33 changed files with 12056 additions and 0 deletions

26
.github/workflows/build-and-deploy.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: Build
on:
push:
branches-ignore:
- 'gh-pages'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build # Have to run processing first so the list.json exists to be included in the the deploy
run: |
npm ci --prefix processing
npm ci --prefix site
./build_all_branches.sh
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: public