2021-11-01 07:38:05 +01:00
|
|
|
name: Pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
2021-12-14 13:02:16 +01:00
|
|
|
parse:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
|
|
|
- name: Install Poetry
|
|
|
|
uses: abatilo/actions-poetry@v2.1.4
|
2021-12-14 13:22:21 +01:00
|
|
|
- name: Install Python dependencies
|
|
|
|
run: poetry install
|
|
|
|
- name: Generate Hugo content
|
|
|
|
run: |
|
|
|
|
./util/generate-hugo-content.py -i data/schema-fields.csv --clean -d
|
2021-11-01 07:38:05 +01:00
|
|
|
pages:
|
|
|
|
runs-on: ubuntu-latest
|
2021-12-14 13:09:58 +01:00
|
|
|
if: ${{ github.ref_name == 'main' }}
|
2021-11-01 07:38:05 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Deploy
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./site/docs
|
2021-11-01 07:41:17 +01:00
|
|
|
publish_branch: site
|