-
Notifications
You must be signed in to change notification settings - Fork 221
39 lines (32 loc) · 1.18 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
name: Release
on:
release:
types: [published]
jobs:
publish:
name: Publish
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Obtain SNK
id: obtain_snk
uses: timheuer/base64-to-file@v1.0.3
with:
fileName: 'SigningKey.snk'
encodedString: ${{ secrets.SNK_BASE64 }}
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
2.1.x
3.1.x
6.0.x
- name: Clean package cache as a temporary workaround for https://github.com/actions/setup-dotnet/issues/155
working-directory: ./source
run: dotnet clean -c Release && dotnet nuget locals all --clear
- name: Pack
working-directory: ./source
run: dotnet pack -c Release /p:version=${{ github.event.release.tag_name }} /p:ContinuousIntegrationBuild=true /p:AssemblyOriginatorKeyFile=${{ steps.obtain_snk.outputs.filePath }} /p:ShouldSignAssembly=true
- name: Publish to NuGet
working-directory: ./source
run: dotnet nuget push **/*.nupkg -k ${{ secrets.NUGET_ORG_PUSH_KEY }} -s https://api.nuget.org/v3/index.json