mirror of
https://git.resf.org/sig_core/wiki.git
synced 2024-11-15 12:11:23 +00:00
27 lines
402 B
YAML
27 lines
402 B
YAML
---
|
|
before_script:
|
|
- apk add --update --no-cache python3 py3-pip
|
|
- /usr/bin/pip3 install -r requirements.txt
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- mkdocs build --script --verbose --site-dir test
|
|
artifacts:
|
|
paths:
|
|
- test
|
|
except:
|
|
- main
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- mkdocs build --verbose
|
|
- mv site public
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- main
|
|
...
|