mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 13:58:05 +00:00
20 lines
458 B
YAML
20 lines
458 B
YAML
|
name: "Build demo"
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: cachix/install-nix-action@v17
|
||
|
with:
|
||
|
nix_path: nixpkgs=channel:nixpkgs-unstable
|
||
|
- run: nix develop -c make build
|
||
|
- name: Deploy to GitHub Pages
|
||
|
uses: JamesIves/github-pages-deploy-action@v4.3.3
|
||
|
with:
|
||
|
branch: gh-pages
|
||
|
folder: public
|