Skip to content

Commit 24229db

Browse files
committed
Debug runner
1 parent 422562e commit 24229db

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
name: ContinuousIntegration Debug NuGet
3+
4+
on:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: windows-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Setup .NET Core
14+
uses: actions/setup-dotnet@v1
15+
with:
16+
dotnet-version: 3.1.101
17+
env:
18+
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
19+
20+
- name: Create NuGet Package
21+
run: dotnet pack -c PackNuGet /p:Version=0.0.0
22+
working-directory: ./src/

0 commit comments

Comments
 (0)