Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -345,13 +345,6 @@ jobs:

- uses: ./src/.github/actions/run-integration-tests

doc:
uses: nextstrain/.github/.github/workflows/docs-ci.yaml@master
with:
docs-directory: doc/
pip-install-target: .[dev]
make-target: dirhtml

release:
# Restricted to version tags by the "on: push: tags: …" config at the top.
if: |2
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Docs

on:
push:
branches:
- master
paths:
- doc/**
- .github/workflows/docs.yaml

pull_request:
paths:
- doc/**
- .github/workflows/docs.yaml

workflow_dispatch:

# Routinely check that we continue to work in the face of external changes.
schedule:
# Every Monday at 17:42 UTC / 9:42 Seattle (winter) / 10:42 Seattle (summer)
- cron: "42 17 * * 1"

jobs:
ci:
uses: nextstrain/.github/.github/workflows/docs-ci.yaml@master
with:
docs-directory: doc/
pip-install-target: .[dev]
make-target: dirhtml
Loading