-
Notifications
You must be signed in to change notification settings - Fork 10
132 lines (111 loc) · 3.77 KB
/
release.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
name: release
on:
push:
branches:
- main
- release/v*
tags:
- v*
paths:
- "src/**"
- "scripts/**"
- "whim-installer.iss"
- "Whim.sln"
- "Directory.Packages.props"
jobs:
create-release:
runs-on: ubuntu-latest
concurrency: ci-create-release-${{ github.ref }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create the release
shell: pwsh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
$channel, $isPrerelease = .\scripts\Get-Channel.ps1
$currentRelease = .\scripts\Get-CurrentWhimRelease.ps1 -Channel $channel
$currentRelease = "v${currentRelease}"
$nextRelease = .\scripts\Get-NextWhimRelease.ps1 -Channel $channel
$nextRelease = "v${nextRelease}"
$resp = gh api repos/$env:GITHUB_REPOSITORY/releases/generate-notes `
-H "Accept: application/vnd.github.v3+json" `
-f tag_name=$nextRelease `
-f previous_tag_name=$currentRelease `
| ConvertFrom-Json
$notes = $resp.body ?? "Initial release"
gh release create "$nextRelease" `
--title "$nextRelease" `
--prerelease="$isPrerelease" `
--notes $notes
release:
runs-on: windows-latest
needs:
- create-release
env:
# We install the packages to the D:\ drive to avoid the slow IO on the C:\ drive.
# Based on https://github.com/actions/setup-dotnet/issues/260#issuecomment-1790162905
NUGET_PACKAGES: D:\a\.nuget\packages
strategy:
matrix:
configuration: [Release]
platform: [x64, arm64]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache NuGet packages
uses: actions/cache@v4
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ matrix.platform }}-nuget-${{ hashFiles('Directory.Packages.props') }}
restore-keys: |
${{ matrix.platform }}-nuget-${{ hashFiles('Directory.Packages.props') }}
${{ matrix.platform }}-nuget-
- name: Get variables
shell: pwsh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
$channel, $isPrerelease = .\scripts\Get-Channel.ps1
$currentRelease = .\scripts\Get-CurrentWhimRelease.ps1 -Channel $channel
$version = "v${currentRelease}"
"CurrentRelease=${currentRelease}" >> $env:GITHUB_ENV
"Version=${version}" >> $env:GITHUB_ENV
- name: Restore dependencies
run: |
dotnet restore Whim.sln -p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}
- name: Install dotnet tools
run: |
dotnet tool restore
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2.0.0
- name: Build schema
run: |
.\scripts\Generate-SourceFromSchema.ps1
- name: Build
run: |
msbuild Whim.sln `
-p:Configuration=$env:Configuration `
-p:Platform=$env:Platform `
-p:Version=$env:CurrentRelease `
-p:BuildInParallel=true `
-maxCpuCount
env:
Configuration: ${{ matrix.configuration }}
Platform: ${{ matrix.platform }}
- name: Build release
shell: pwsh
env:
Platform: ${{ matrix.platform }}
run: |
$installerPath = .\scripts\Create-Installer.ps1 -Architecture $env:Platform
"InstallerPath=${installerPath}" >> $env:GITHUB_ENV
- name: Upload release assets
shell: pwsh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload "${env:Version}" "${env:InstallerPath}"