Skip to content

fix: add-digests didn't have the state dir populated (#508) #369

fix: add-digests didn't have the state dir populated (#508)

fix: add-digests didn't have the state dir populated (#508) #369

Workflow file for this run

on:
push:
branches:
- master
name: Docs
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # ratchet:actions/checkout@master
with:
submodules: true
- name: Init Hermit
uses: cashapp/activate-hermit@e49f5cb4dd64ff0b0b659d1d8df499595451155a # ratchet:cashapp/activate-hermit@v1
- name: Init Python Virtual Environment
run: |
python -mvenv .venv
. .venv/bin/activate
echo PATH=$PATH >> $GITHUB_ENV
- name: Generate Schema Docs
run: |
make -C docs schema
- name: Setup mkdocs
working-directory: ./docs
run: pip install -r requirements.txt
- name: Publish Site
working-directory: ./docs
run: mkdocs gh-deploy --force