OctoSpaccHub/.gitlab-ci.yml

21 lines
381 B
YAML
Raw Normal View History

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