-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
documentationIssue concerns the documentationIssue concerns the documentation
Description
Description
In your Documentation you publish a .gitlab-ci.yml like this:
pages:
stage: deploy
image: python:latest
script:
- pip install zensical
- zensical build --clean
pages:
publish: public
rules:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
This creates a fatal error. With this correction publish: site, it works:
pages:
stage: deploy
image: python:latest
script:
- pip install zensical
- zensical build --clean
pages:
publish: site
rules:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
Related links
- Reporting a docs issue in
- Section: GitLab Pages
Proposed change
Correct it
Before submitting
- I have read and followed the documentation issue guidelines.
- I have attached the links to the affected sections of the documentation
Metadata
Metadata
Assignees
Labels
documentationIssue concerns the documentationIssue concerns the documentation