mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-31 01:57:54 +00:00
35 lines
924 B
YAML
35 lines
924 B
YAML
# TODO:
|
|
# - Setup the structure correctly for site generation
|
|
# - Build the site
|
|
# - Export the site to GitHub pages
|
|
name: Generate site to GitHub pages
|
|
on: [push]
|
|
jobs:
|
|
generate-site:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: cachix/install-nix-action@v13
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
- uses: workflow/nix-shell-action@v1
|
|
with:
|
|
packages: nodejs,coreutils
|
|
script: |
|
|
mkdir -p site/public
|
|
mv *.org structured/ site/public
|
|
cd site
|
|
npm install
|
|
npm run build
|
|
ls -la
|
|
- name: Deploy to GitHub Pages
|
|
if: success()
|
|
uses: crazy-max/ghaction-github-pages@v2
|
|
with:
|
|
jekyll: false
|
|
target_branch: gh-pages
|
|
build_dir: site/out
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.PAGES_TOKEN }}
|
|
|