-
Notifications
You must be signed in to change notification settings - Fork 1
31 lines (27 loc) · 845 Bytes
/
dotnet.yml
File metadata and controls
31 lines (27 loc) · 845 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: [ master ]
pull_request:
branches: [ master ]
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: setup azure artifacts
# run: wget -qO- https://aka.ms/install-artifacts-credprovider.sh | bash
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Push Nupkg to nuget.org
#env:
# VSS_NUGET_EXTERNAL_FEED_ENDPOINTS: ${{ secrets.NUGET_ORG }}
run: dotnet nuget push --source "https://api.nuget.org/v3/index.json" --api-key ${{ secrets.NUGET_ORG }} "./.artifacts/*.nupkg" --skip-duplicate