Skip to content

Merge pull request #86 from jeromekelleher/fix-publish-action2 #61

Merge pull request #86 from jeromekelleher/fix-publish-action2

Merge pull request #86 from jeromekelleher/fix-publish-action2 #61

Workflow file for this run

name: Docs
on:
pull_request:
push:
branches: [main]
tags:
- '*'
env:
BUILD_GSL: true
COMMIT_EMAIL: [email protected]
OWNER: tskit-dev
REPO: tstrait
jobs:
build-deploy-docs:
name: Docs
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: actions/cache@v3
id: venv-cache
with:
path: venv
key: docs-venv-v8-${{ hashFiles('requirements/CI-docs/requirements.txt') }}
- name: Create venv and install deps
if: steps.venv-cache.outputs.cache-hit != 'true'
run: |
python -m venv venv
. venv/bin/activate
pip install --upgrade pip wheel
pip install -r requirements/CI-docs/requirements.txt
- name: Build Docs
run: |
. venv/bin/activate
cd docs
make
- name: Trigger docs site rebuild
if: github.ref == 'refs/heads/main'
run: |
curl -X POST https://api.github.com/repos/tskit-dev/tskit-site/dispatches \
-H 'Accept: application/vnd.github.everest-preview+json' \
-u AdminBot-tskit:${{ secrets.ADMINBOT_TOKEN }} \
--data '{"event_type":"build-docs"}'