mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
16 lines
264 B
YAML
16 lines
264 B
YAML
image: debian:stable
|
|
|
|
before_script:
|
|
- apt-get update && apt-get -y install texi2html
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- mkdir -p html && (cd html && texi2html ../doc/chopstx.texi)
|
|
- mv html/ public
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|