Files
scheduler-front/.gitlab-ci.yml
2025-11-10 06:58:43 +00:00

21 lines
325 B
YAML

stages:
- build
variables:
GIT_STRATEGY: clone
GIT_CHECKOUT: "true"
GIT_SSL_NO_VERIFY: "true"
build:
stage: build
image: node:25.1.0
tags:
- local-runner
script:
- node -v
- npm install
- npm run build
- pwd
- ls
- docker cp -r $pwd/dist/* scheduler_front:/usr/share/nginx/html/