Skip to content

Commit

Permalink
fix release publishing (#38)
Browse files Browse the repository at this point in the history
* separate release and debug configs
  • Loading branch information
blbradley authored Nov 13, 2018
1 parent 0c0f82f commit c40adb8
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ environment:
install:
- java -version

configuration:
- debug
- release
configuration: debug

build_script:
- ant -buildfile ./src/build/build.xml $CONFIGURATION
Expand Down Expand Up @@ -40,23 +38,23 @@ deploy:
auth_token: $GITHUB_TOKEN
on:
branch: master
configuration: release
CONFIGURATION: release
- provider: GitHub
tag: v${VERSION}
release: Zcash Desktop GUI Wallet ${VERSION}
artifact: installer/target/zcash-wallet-installer.exe
auth_token: $GITHUB_TOKEN
on:
branch: master
configuration: release
CONFIGURATION: release
- provider: GitHub
tag: v${VERSION}
release: Zcash Desktop GUI Wallet ${VERSION}
artifact: /build\/ubuntu-package\/.*\.deb/
auth_token: $GITHUB_TOKEN
on:
branch: master
configuration: release
CONFIGURATION: release

for:
-
Expand All @@ -67,3 +65,10 @@ for:
deploy_script:
- gem install package_cloud
- package_cloud push blbradley/zcash-wallet-dev/ubuntu/xenial build/ubuntu-package/*.deb

-
branches:
only:
- master

configuration: release

0 comments on commit c40adb8

Please sign in to comment.