OctoSpaccHub/.gitlab-ci.yml

25 lines
440 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: |
for App in WuppiMini
do
mkdir ./public/${App}
cd ./src/${App}
npm update
npm install
node ./index.js html
cp ./index.js ./index.html ./node_modules/SpaccDotWeb/SpaccDotWeb.Server.js ../../public/${App}/
cd ../..
done
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