We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e685fdc commit 07a8b7eCopy full SHA for 07a8b7e
.github/workflows/NugetPublishing.yml
@@ -0,0 +1,25 @@
1
+name: Publish Packages
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-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: 5.0.x
17
+ - name: Install dependencies
18
+ run: dotnet restore
19
+ - name: Build
20
+ run: dotnet build --configuration Release --no-restore
21
+ - name: Publish DTD.Sort.Net
22
+ uses: brandedoutcast/publish-nuget@v2.5.2
23
24
+ PROJECT_FILE_PATH: ./DTD.Sort.Net.Main/DTD.Sort.Net.Main.csproj
25
+ NUGET_KEY: ${{secrets.NUGET_API_KEY}}
0 commit comments