Browse Source

Update appveyor.yml

pull/1617/head
Ramiro Saenz 7 years ago committed by GitHub
parent
commit
9bd240162c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 39
      appveyor.yml

39
appveyor.yml

@ -9,9 +9,10 @@ branches:
- master - master
skip_non_tags: true skip_non_tags: true
init: init:
- cmd: git config --global core.autocrlf input - cmd: git config --global core.autocrlf input
install: install:
- cmd: >- - ps: Install-Product node $env:nodejs_version
- cmd: >-
git reset --hard HEAD git reset --hard HEAD
npm run sencha:clean npm run sencha:clean
@ -26,12 +27,12 @@ install:
npm prune npm prune
cache: cache:
- '%APPDATA%\npm-cache' - '%APPDATA%\npm-cache'
- '%USERPROFILE%\.electron' - '%USERPROFILE%\.electron'
- node_modules - node_modules
- build\production\Rambox\node_modules - build\production\Rambox\node_modules
build_script: build_script:
- cmd: >- - cmd: >-
node --version node --version
npm --version npm --version
@ -39,16 +40,16 @@ build_script:
node_modules/.bin/build --win --ia32 --x64 node_modules/.bin/build --win --ia32 --x64
test: off test: off
artifacts: artifacts:
- path: dist\win\*.exe - path: dist\win\*.exe
- path: dist\win\*.nupkg - path: dist\win\*.nupkg
- path: dist\win\RELEASES - path: dist\win\RELEASES
- path: dist\win-ia32\*.exe - path: dist\win-ia32\*.exe
- path: dist\*.zip - path: dist\*.zip
deploy: deploy:
- provider: GitHub - provider: GitHub
tag: $(appveyor_build_version) tag: $(appveyor_build_version)
release: $(appveyor_build_version) release: $(appveyor_build_version)
auth_token: auth_token:
secure: RKFkz2S89dkYXdW+k47Wv42yrUeE1bDDMkM1PNuxrb0ZOcVVXPO88+t5dUllyvOG secure: RKFkz2S89dkYXdW+k47Wv42yrUeE1bDDMkM1PNuxrb0ZOcVVXPO88+t5dUllyvOG
draft: true draft: true
prerelease: false prerelease: false

Loading…
Cancel
Save