Skip to content

Commit 1489ec5

Browse files
authored
housekeeping: Add release script
1 parent 498dbf0 commit 1489ec5

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed

.github/workflows/release.yml

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
name: Build and Release
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
env:
8+
configuration: Release
9+
productNamespacePrefix: "ReactiveMarbles"
10+
11+
jobs:
12+
build:
13+
runs-on: windows-2022
14+
environment:
15+
name: release
16+
outputs:
17+
nbgv: ${{ steps.nbgv.outputs.SemVer2 }}
18+
steps:
19+
- name: Checkout
20+
uses: actions/[email protected]
21+
with:
22+
fetch-depth: 0
23+
lfs: true
24+
25+
- name: Install .NET 6
26+
uses: actions/[email protected]
27+
with:
28+
dotnet-version: 6.0.x
29+
30+
- name: NBGV
31+
id: nbgv
32+
uses: dotnet/nbgv@master
33+
with:
34+
setAllVars: true
35+
36+
- name: NuGet Restore
37+
run: dotnet restore
38+
working-directory: src
39+
40+
- name: Build
41+
run: dotnet build --configuration=${{ env.configuration }} --verbosity=minimal --no-restore
42+
working-directory: src
43+
44+
- name: Pack
45+
run: dotnet pack --configuration=${{ env.configuration }} --verbosity=minimal --no-restore
46+
working-directory: src
47+
48+
- uses: nuget/setup-nuget@v1
49+
name: Setup NuGet
50+
51+
# Decode the base 64 encoded pfx and save the Signing_Certificate
52+
- name: Sign NuGet packages
53+
shell: pwsh
54+
run: |
55+
$pfx_cert_byte = [System.Convert]::FromBase64String("${{ secrets.SIGNING_CERTIFICATE }}")
56+
[IO.File]::WriteAllBytes("GitHubActionsWorkflow.pfx", $pfx_cert_byte)
57+
$secure_password = ConvertTo-SecureString ${{ secrets.SIGN_CERTIFICATE_PASSWORD }} –asplaintext –force
58+
Import-PfxCertificate -FilePath GitHubActionsWorkflow.pfx -Password $secure_password -CertStoreLocation Cert:\CurrentUser\My
59+
nuget sign -Timestamper http://timestamp.digicert.com -CertificateFingerprint ${{ secrets.SIGN_CERTIFICATE_HASH }} **/*.nupkg
60+
- name: Changelog
61+
uses: glennawatson/[email protected]
62+
id: changelog
63+
64+
- name: Create Release
65+
uses: actions/[email protected]
66+
env:
67+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
68+
with:
69+
tag_name: ${{ steps.nbgv.outputs.SemVer2 }}
70+
release_name: ${{ steps.nbgv.outputs.SemVer2 }}
71+
body: |
72+
${{ steps.changelog.outputs.commitLog }}
73+
- name: NuGet Push
74+
env:
75+
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_API_KEY }}
76+
SOURCE_URL: https://api.nuget.org/v3/index.json
77+
run: |
78+
dotnet nuget push -s ${{ env.SOURCE_URL }} -k ${{ env.NUGET_AUTH_TOKEN }} **/*.nupkg

0 commit comments

Comments
 (0)