-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (27 loc) · 857 Bytes
/
dotnet.yml
File metadata and controls
31 lines (27 loc) · 857 Bytes
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
name: .NET
on:
push:
branches: [ main ]
tags: ["*.*.*"]
pull_request:
branches: [ main ]
tags: ["*.*.*"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Pack with dotnet
run: dotnet pack src/Fingerprint.NET/Fingerprint.NET.csproj --output nuget-packages --configuration Release
- name: Push to Nuget with dotnet
run: dotnet nuget push nuget-packages/*.nupkg --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json