forked from mkaring/ConfuserEx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
91 lines (81 loc) · 2.56 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
version: '{build}'
image: Visual Studio 2022
configuration: Release
platform: Any CPU
skip_commits:
files:
- .github/*
- doc/*
- readme.md
- license.md
environment:
CHOCO_API_KEY:
secure: oSM1kJpS3CZN3XVnDWMEGfivr5hW3NR6KRsCjqAimtrv9zvbPObZLgsJ3ZthmkQs
nuget:
disable_publish_on_pr: true
install:
- cmd: git submodule update --init --recursive
before_build:
- cmd: msbuild Confuser2.sln /t:Restore /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
build:
project: Confuser2.sln
verbosity: minimal
after_build:
- pwsh: >-
Push-Location Confuser.CLI\bin\$env:CONFIGURATION\net461;
. 7z a ..\..\..\..\ConfuserEx-CLI.zip "-xr!*.pdb" "-xr!*.xml";
Pop-Location
- pwsh: >-
Push-Location ConfuserEx\bin\$env:CONFIGURATION\net461;
. 7z a ..\..\..\..\ConfuserEx-GUI.zip "-xr!*.pdb" "-xr!*.xml";
Pop-Location
- pwsh: >-
Push-Location Confuser.CLI\bin\$env:CONFIGURATION\net461;
. 7z a ..\..\..\..\ConfuserEx.zip "-xr!*.pdb" "-xr!*.xml";
Pop-Location;
Push-Location ConfuserEx\bin\$env:CONFIGURATION\net461;
. 7z a ..\..\..\..\ConfuserEx.zip "-xr!*.pdb" "-xr!*.xml" -y;
Pop-Location
artifacts:
- path: ConfuserEx*.zip
- path: Confuser.MSBuild.Tasks/bin/Release/*.nupkg
name: ConfuserEx.MSBuild
for:
-
branches:
except:
- master
build:
publish_nuget: false
deploy:
- provider: GitHub
tag: $(APPVEYOR_REPO_TAG_NAME)
description: "ConfuserEx $(APPVEYOR_REPO_TAG_NAME) Release"
auth_token:
secure: k2MIY7tKQEsg6+w3QIxMx6ptoBccUgOadKA1I8O9myFZS4SBdEINCbjGwALZrhdm
on:
APPVEYOR_REPO_TAG: true
- provider: NuGet
api_key:
secure: KSGvC66WIcadFq9WgN+SQVRAkYFojRmqmmiDlJP4CqmpZOGcOgT0tgg1MkWw6glg
on:
APPVEYOR_REPO_TAG: true
- provider: NuGet
server: https://nuget.pkg.github.com/mkaring/index.json
api_key:
secure: k2MIY7tKQEsg6+w3QIxMx6ptoBccUgOadKA1I8O9myFZS4SBdEINCbjGwALZrhdm
username:
secure: NGDRiYcrJaLN2PkRszWIVg==
on:
APPVEYOR_REPO_TAG: true
after_deploy:
- pwsh: >-
if ($env:APPVEYOR_REPO_TAG -eq $true) {
Copy-Item -Path ConfuserEx.zip -Destination .\chocolatey-packages\confuserex\tools
Copy-Item -Path ConfuserEx-CLI.zip -Destination .\chocolatey-packages\confuserex.portable\tools
.\chocolatey-packages\New-ChocolateyPackage.ps1 -PackageVersion $env:APPVEYOR_REPO_TAG_NAME
choco apikey --key $env:CHOCO_API_KEY --source https://push.chocolatey.org/
Get-ChildItem -Path .\chocolatey-packages -Filter *.nupkg | ForEach-Object {
choco push $_.FullName --source https://push.chocolatey.org/
}
}