mirror of
https://github.com/sfall-team/sfall.git
synced 2026-07-27 16:52:34 -07:00
16 lines
283 B
Bash
Executable File
16 lines
283 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xeu -o pipefail
|
|
|
|
site_dir="docs"
|
|
yml_dir="../artifacts/scripting"
|
|
pages_dir="pages"
|
|
|
|
cd "$site_dir"
|
|
mkdir -p "$pages_dir"
|
|
./yaml_to_md.py "$yml_dir/functions.yml" "$yml_dir/hooks.yml" "$pages_dir"
|
|
|
|
bundle update github-pages
|
|
bundle install
|
|
bundle exec jekyll build
|