Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
863 views
in Technique[技术] by (71.8m points)

gitlab-runner windows下运行微信开发者工具报错

image.png

.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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...