-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (34 loc) · 1.04 KB
/
publishing.yaml
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
name: 'Publish to Nuget'
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.408
- name: Install dependencies
run: dotnet restore
- name: Test Nuget
run: dotnet test --configuration Release
publish:
needs: build
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.408
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Pack
run: dotnet pack --include-symbols -p:SymbolPackageFormat=snupkg --configuration Release --output .
- name: Publish
run: dotnet nuget push PostFinanceCheckout.*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json