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

Update .gitlab-ci.yml

parent b34f9612
Pipeline #41839 passed with stage
in 10 seconds
image: node:alpine variables:
MT_VAR: "myname is zye"
stages:
- install
- build
- deploy
cache: log_var:
key: hello-vue-cache
paths:
- node_modules
job_install:
stage: install
script: script:
- npm install - echo $MT_VAR
# stages:
# - install
# - build
# - deploy
job_build:
stage: build # job_install:
script: # stage: install
- npm run build # script:
# - npm install
job_deploy:
stage: deploy # job_build:
script: # stage: build
- echo 'start deploy' # 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