You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
456 B
23 lines
456 B
language: node_js
|
|
sudo: required
|
|
node_js:
|
|
- 10.0.0
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
before_install:
|
|
- export TZ='Asia/Shanghai'
|
|
install:
|
|
- npm install
|
|
script:
|
|
- npm run publish
|
|
|
|
after_script:
|
|
- git init
|
|
- git config user.name "${USER_NAME}"
|
|
- git config user.email "${USER_EMAIL}"
|
|
- git add .
|
|
- git commit -m "publish"
|
|
- git push -f https://${access_token}@github.com/DoctorWei/weapp.qrcode-canvas-2d HEAD:master
|
|
|
|
branch: master |