OcttKB/.gitlab-ci.yml

20 lines
381 B
YAML
Raw Normal View History

image: alpine:latest
before_script: |
apk update
apk add npm
npm install -g tiddlywiki
pages:
stage: deploy
script: |
#./Build.sh
cd ./public
tiddlywiki . --rendertiddler $:/core/templates/alltiddlers.template.html Static.html text/plain
2022-09-20 12:52:24 +02:00
mv ./output/* ./
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH