diff options
| author | Alee <Alee14498@gmail.com> | 2019-02-10 13:56:44 -0500 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-02-10 13:56:44 -0500 |
| commit | 5f9befe34beeaffbd2b9487dd40a37c3ccdf2bfc (patch) | |
| tree | 484191fc57decfbc3b082fc507a0542262fc7585 | |
| parent | 0d7585f9e35f4d48bebce1130853f26947d6854b (diff) | |
| download | BSODPrank-5f9befe34beeaffbd2b9487dd40a37c3ccdf2bfc.tar.gz BSODPrank-5f9befe34beeaffbd2b9487dd40a37c3ccdf2bfc.tar.bz2 BSODPrank-5f9befe34beeaffbd2b9487dd40a37c3ccdf2bfc.zip | |
More appveyor things
| -rw-r--r-- | appveyor.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml index 3ac7cb7..8b25550 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,3 +1,32 @@ +image: Visual Studio 2015 +configuration: Debug +platform: Any CPU +before_build: +- nuget restore + +build: + project: BSODPrank.sln + verbosity: minimal + +after_build: +- cmd: 7z a -tzip "BSODPrank/bin/Debug/BSODPrank.zip" "BSODPrank/bin/Debug/*" + +artifacts: +- path: BSODPrank/bin/Debug/BSODPrank.zip + name: DevBuild + +deploy: + provider: GitHub + release: Continuous build + auth_token: + secure: $env:GITHUB_TOKEN + artifact: /.*\.zip/ + draft: false + prerelease: true + tag: $(APPVEYOR_REPO_TAG_NAME) + on: + APPVEYOR_REPO_TAG: true + on_success: - ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1 - ps: ./send.ps1 success $env:WEBHOOK_URL |
