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
Proposed change
Correct it
Before submitting
Description
In your Documentation you publish a
.gitlab-ci.ymllike this:This creates a fatal error. With this correction
publish: site, it works:Related links
Proposed change
Correct it
Before submitting