2026-03-22 14:06:34 -07:00
|
|
|
name: Build and Deploy
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- master
|
|
|
|
|
- develop
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
deploy:
|
|
|
|
|
runs-on: self-hosted
|
|
|
|
|
steps:
|
|
|
|
|
- name: Checkout
|
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
2026-03-22 15:41:29 -07:00
|
|
|
- name: Build
|
|
|
|
|
run: nix shell nixpkgs#mdbook --command ./deploy.sh build
|
|
|
|
|
|
2026-03-22 14:06:34 -07:00
|
|
|
- name: Deploy
|
2026-03-22 15:41:29 -07:00
|
|
|
run: nix shell nixpkgs#rsync --command ./deploy.sh local
|