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 cc5f3ba commit 75a2650Copy full SHA for 75a2650
.github/workflows/build.yml
@@ -11,9 +11,13 @@ jobs:
11
- uses: actions/checkout@v2
12
- name: Setup .NET Core
13
uses: actions/setup-dotnet@v1
14
- #with:
15
- # dotnet-version: 2.2.108
16
- name: Build with dotnet
17
run: |
18
dotnet --version
19
dotnet build --configuration Release
+ dotnet pack --no-build -c Release
+ - name: NuGet push
20
+ run: |
21
+ source=ADD_SOURCE_URL_HERE
22
+ key=ADD_NUGET_KEY #${{secrets.myget_froto_api_key}}
23
+ echo "dotnet nuget push -s $source -k $key nuget/*.nupkg"
src/FSharp.Collections.Immutable/NuGet.Config
0 commit comments