playgroundGitForgeLab/.gitlab-ci.yml
Matteo Delucchi 87e1b93c4f
Some checks failed
Build README.html / build (push) Has been cancelled
CI for all three forges: build README.html and publish as artifact
2026-03-04 15:34:45 +01:00

16 lines
334 B
YAML

stages: [build]
build_readme_html:
stage: build
image: pandoc/core:3.1
rules:
- if: $CI_PIPELINE_SOURCE == "push"
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
script:
- ./scripts/build_readme.sh
artifacts:
name: "readme-html-$CI_COMMIT_SHORT_SHA"
paths:
- README.html
expire_in: 30 days