Skip to content

Build and deploy GH Pages #192

Build and deploy GH Pages

Build and deploy GH Pages #192

Workflow file for this run

name: Build and deploy GH Pages
on:
push:
branches:
- main
schedule:
- cron: '15 6 * * *'
jobs:
build:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: checkout
uses: actions/checkout@v4
with:
submodules: true
lfs: true
- name: setup nushell
uses: hustcer/setup-nu@v3
- name: fetch founders list
run: nu scripts/fetch_founders.nu
- name: build_and_deploy
uses: shalzz/zola-deploy-action@v0.21.0
env:
PAGES_BRANCH: gh-pages
TOKEN: ${{ secrets.GITHUB_TOKEN }}