mirror of
https://gitlab.com/octospacc/octospacc.gitlab.io
synced 2025-02-02 19:47:28 +01:00
20 lines
362 B
YAML
20 lines
362 B
YAML
image: alpine:latest
|
|
|
|
before_script: |
|
|
apk update
|
|
apk add nodejs npm
|
|
|
|
pages:
|
|
stage: deploy
|
|
script: |
|
|
mkdir ./public/WuppiMini
|
|
cd ./src/WuppiMini
|
|
npm install
|
|
node ./index.js html
|
|
cp ./index.js ./index.html ./node_modules/SpaccDotWeb/SpaccDotWeb.Server.js ../../public/WuppiMini/
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|