.gitlab-ci.yml
variables:
VERSION: 1.0.0
DESCRIPTION: gitlab-runner robot upload
PROJECT: E:GitLab-Runnerbuilds_eK-B_fP0rq-ptmpdistbuildmp-weixin
before_script:
- date
- npm -v
- node -v
after_script:
- date
stages:
- build
- deploy
cache:
paths:
- ./node_modules
build:
stage: build
script:
- npm install
- cp .env.example .env
- npm run build
artifacts:
name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
untracked: false
paths:
- dist
tags:
- PC_1
deploy:
stage: deploy
dependencies:
- build
script:
- D:TencentWeChatToolscli.bat -u "$env:VERSION@$env:PROJECT" --upload-desc $env:DESCRIPTION
tags:
- PC_1
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…