Skip to content

Commit

Permalink
Clean up deployment to GitHub Releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanCline committed Jun 3, 2017
1 parent bcc96cb commit 5014e19
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,18 @@ test_script:

# Package up build artifacts.
after_build:
- 7z a PyExt.zip .\*\Release\pyext.dll
- 7z a PyExtDebug.zip .\*\*\*.dll .\*\*\*.pdb .\*\*\*.exe
- 7z a PyExt-$(Platform)-$(Configuration).zip .\*\*\pyext.dll .\*\*\pyext.pdb

artifacts:
- path: PyExt.zip
name: PyExt

- path: PyExtDebug.zip
name: PyExtDebug
- path: PyExt-$(Platform)-$(Configuration).zip
name: PyExt-$(Platform)-$(Configuration)

# Deploy build artifacts to GitHub Releases
deploy:
- provider: GitHub
artifact: PyExt.zip
draft: true
prerelease: true
on:
branch: master # release from master branch only
appveyor_repo_tag: true # deploy on tag push only
# on:
# branch: master # release from master branch only
# appveyor_repo_tag: true # deploy on tag push only

0 comments on commit 5014e19

Please sign in to comment.