OctoSpaccHub/.gitlab-ci.yml

20 lines
313 B
YAML
Raw Normal View History

2020-10-30 16:35:59 +00:00
image: alpine:latest
2024-02-13 00:26:47 +01:00
before_script: |
apk update
apk add nodejs npm
2020-10-30 16:35:59 +00:00
pages:
stage: deploy
2024-02-13 00:26:47 +01:00
script: |
mkdir ./public/WuppiMini
cd ./src/WuppiMini
npm install
node ./index.js html
cp ./index.js ./index.html ../../public/WuppiMini/
2020-10-30 16:35:59 +00:00
artifacts:
paths:
2021-09-22 23:06:04 +02:00
- public
2020-10-30 16:35:59 +00:00
only:
- master