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 deb5192 commit e686e0bCopy full SHA for e686e0b
.github/workflows/dotnetcore.yml
@@ -15,3 +15,7 @@ jobs:
15
dotnet-version: 2.2.108
16
- name: Build with dotnet
17
run: dotnet build --configuration Release
18
+ - name: Push NuGet packages - Nightly Builds
19
+ run: |
20
+ dotnet pack --configuration Release
21
+ dotnet nuget push "bin/Release/querybuilder.1.0.0.nupkg" --source "github"
nuget.config
@@ -0,0 +1,7 @@
1
+<?xml version="1.0" encoding="utf-8"?>
2
+<configuration>
3
+ <packageSources>
4
+ <clear />
5
+ <add key="github" value="https://nuget.pkg.github.com/OWNER/index.json" />
6
+ </packageSources>
7
+</configuration>
0 commit comments