mirror of
https://gitlab.com/octtspacc/sitoctt
synced 2025-02-07 23:28:44 +01:00
19 lines
370 B
YAML
19 lines
370 B
YAML
image: alpine:latest
|
|
|
|
before_script:
|
|
- apk update
|
|
- apk add python3 py3-pip npm git
|
|
- pip3 install requests lxml
|
|
- npm install -g pug-cli
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- git clone --depth 1 https://gitlab.com/octtspacc/staticoso
|
|
- Scripts/Deploy.GitLab.sh
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|