Commit 3ef70268 authored by 朱允伟's avatar 朱允伟

Update .gitlab-ci.yml

parent b34f9612
Pipeline #41839 passed with stage
in 10 seconds
image: node:alpine
stages:
- install
- build
- deploy
variables:
MT_VAR: "myname is zye"
cache:
key: hello-vue-cache
paths:
- node_modules
job_install:
stage: install
log_var:
script:
- npm install
- echo $MT_VAR
# stages:
# - install
# - build
# - deploy
job_build:
stage: build
script:
- npm run build
# job_install:
# stage: install
# script:
# - npm install
job_deploy:
stage: deploy
script:
- echo 'start deploy'
# job_build:
# stage: build
# script:
# - npm run build
# job_deploy:
# stage: deploy
# script:
# - echo 'start deploy'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment