Unverified Commit 5d93a87f authored by Matti Picus's avatar Matti Picus Committed by GitHub
Browse files

always run build_docs in CI (#4053)

parent 2786a124
...@@ -1432,7 +1432,7 @@ workflows: ...@@ -1432,7 +1432,7 @@ workflows:
filters: filters:
branches: branches:
only: only:
- nightly - '*'
tags: tags:
only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name: build_docs name: build_docs
......
...@@ -57,7 +57,7 @@ def build_workflows(prefix='', filter_branch=None, upload=False, indentation=6, ...@@ -57,7 +57,7 @@ def build_workflows(prefix='', filter_branch=None, upload=False, indentation=6,
if not filter_branch: if not filter_branch:
# Build on every pull request, but upload only on nightly and tags # Build on every pull request, but upload only on nightly and tags
w += build_doc_job('nightly') w += build_doc_job('*')
w += upload_doc_job('nightly') w += upload_doc_job('nightly')
return indent(indentation, w) return indent(indentation, w)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment