Skip to content

Change sempav to semapv in the tutorial page (#317) #101

Change sempav to semapv in the tutorial page (#317)

Change sempav to semapv in the tutorial page (#317) #101

name: Deploy Documentation
# Controls when the action will run. Triggers the workflow on push
on:
workflow_dispatch:
push:
branches: [ master ]
paths:
- 'src/docs/*'
- 'src/sssom_schema/schema/sssom_schema.yaml'
- 'mkdocs.yml'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-docs:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
#----------------------------------------------
# check-out repo and set-up python
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v3
with:
# persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- name: Set up Python3
uses: actions/setup-python@v3
with:
python-version: 3.9
#----------------------------------------------
# install & configure poetry
#----------------------------------------------
- name: Install Poetry
uses: snok/install-poetry@v1.3
# with:
# virtualenvs-create: true
# virtualenvs-in-project: true
#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
# run: poetry install --no-interaction --no-root
run: poetry install -E docs
#----------------------------------------------
# install your root project, if required
#----------------------------------------------
# - name: Install library
# run: poetry install --no-interaction
- name: Create local docs
run: |
mkdir docs
touch docs/.nojekyll
cp -r src/docs/* docs/
poetry run gen-doc -d docs src/sssom_schema/schema/sssom_schema.yaml
poetry run mkdocs gh-deploy