diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml index ae7c94e..a0e8e40 100644 --- a/.github/workflows/ci-docs.yml +++ b/.github/workflows/ci-docs.yml @@ -1,10 +1,14 @@ name: CI - Docs build check on: - pull_request: - branches-ignore: - - gh-pages - push: + push: + branches: + - main + - development + - release-candidate + tags-ignore: # Don't need to run on tag pushes. + - "v*" + - "rc*" workflow_dispatch: permissions: @@ -13,6 +17,7 @@ permissions: env: MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT:-true }} MKDOCS_CONFIG: mkdocs/mkdocs.yml + MKDOCS_OFFLINE: false CSPELL_CONFIG: tools/spellcheck/cspell.yml CSPELL_TARGETS: "docs/**/*.md" README.md