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