forked from t1m0thyj/WinDynamicDesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
29 lines (27 loc) · 824 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
version: 1.0.{build}
skip_branch_with_pr: true
image: Visual Studio 2019
configuration: Release
environment:
UseTemporarySignCert: true
install:
- ps: choco install innosetup -y -r
before_build:
- ps: >-
if ($env:APPVEYOR_REPO_TAG -eq "true") {
Update-AppveyorBuild -Version "$($env:APPVEYOR_REPO_TAG_NAME.TrimStart("v"))"
} else {
Update-AppveyorBuild -Version "dev-$($env:APPVEYOR_REPO_COMMIT.Substring(0, 7))"
}
nuget restore src\WinDynamicDesktop.sln
build:
verbosity: minimal
after_build:
- ps: powershell scripts\package.ps1
artifacts:
- path: dist\WinDynamicDesktop_*_Portable.exe
name: Portable EXE
- path: dist\WinDynamicDesktop_*_Setup.exe
name: Installer package
- path: uwp\AppPackages\**\WinDynamicDesktop*.appxbundle
name: UWP app package