-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
33 lines (30 loc) · 915 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: 0.11.{build}
branches:
only:
- /wiblum/.*/
- master
image: Visual Studio 2017
configuration: Release
build:
verbosity: minimal
before_build:
- ps: build\beforebuild.ps1
after_build:
- ps: choco pack choco\latexdaemon.nuspec -version $env:APPVEYOR_BUILD_VERSION;
Get-ChildItem *.nupkg | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
artifacts:
- path: latexdaemon\Release\*.exe
name: app
- path: '*.nupkg'
name: choco
deploy:
- provider: GitHub
release: LatexDaemon v$(appveyor_build_version)
auth_token:
secure: A57nEYjq6P/Fhsm4lw6DU9a5Hk/arQ9b4MPw0FY972NXwvsQ9TA8eX8Q92d7yYWe
draft: true
force_update: true
on:
branch: master
# NOTE: I used following instructions to set up Chocolatey packaging with Appveyor
# https://blog.gripdev.xyz/2015/04/08/appveyor-github-and-chocolatey-automatically-build-your-project-and-publish-updates-it-to-chocolatey/