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 7f497a7 commit e08aeb4Copy full SHA for e08aeb4
.github/workflows/production.yml
@@ -13,10 +13,6 @@ jobs:
13
uses: actions/checkout@v1
14
- name: Setup .NET Core
15
uses: actions/setup-dotnet@v1
16
- with:
17
- source-url: https://api.nuget.org/v3/index.json
18
- env:
19
- NUGET_AUTH_TOKEN: ${{secrets.NUGET_DEPLOY_KEY}}
20
- name: Build
21
run: dotnet build -c Release
22
- name: Pack artifacts
@@ -27,4 +23,4 @@ jobs:
27
23
name: nupkg
28
24
path: artifacts/*
29
25
- name: Publish to NuGet
30
- run: dotnet nuget push "artifacts/*.nupkg"
26
+ run: dotnet nuget push "artifacts/*.nupkg" --api-key ${{ secrets.NUGET_DEPLOY_KEY }} --source https://api.nuget.org/v3/index.json
0 commit comments