mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2024-12-14 09:24:17 +01:00
19 lines
288 B
YAML
19 lines
288 B
YAML
image: alpine:latest
|
|
|
|
before_script: |
|
|
apk update
|
|
apk add wget npm
|
|
npm install -g tiddlywiki
|
|
|
|
pages:
|
|
stage: deploy
|
|
script: |
|
|
./Bootstrap.sh
|
|
#./Build.sh
|
|
#./DeployOld.sh
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|