mirror of
https://gitlab.com/octtspacc/twemoji-astonishing
synced 2024-12-22 21:39:00 +01:00
18 lines
392 B
YAML
18 lines
392 B
YAML
image: alpine:latest
|
|
|
|
before_script: |
|
|
apk update
|
|
apk add python3 tree wget tar xz p7zip
|
|
|
|
pages:
|
|
stage: deploy
|
|
script: |
|
|
python3 ./Tools/BuildCSS.py
|
|
python3 ./Tools/BuildCSS.py --Output="maxcdn/" --URLPrefix="https://twemoji.maxcdn.com/v/latest/svg/"
|
|
./Tools/DeployPages.sh
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|