File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name: Release package to NuGet
33env :
44 OUTPUT_PATH : ${{ github.workspace }}/.output
55 DOTNET_VERSION : " 3.1.100"
6+ NUGET_SOURCE : " https://api.nuget.org/v3/index.json"
67
78on :
89 issues :
7172
7273 - name : Push NuGet Package
7374 if : steps.check-issue.outputs.exists == 'true'
75+ working-directory : ${{ env.OUTPUT_PATH }}
7476 run : |
75- dotnet nuget push FSharp.CosmosDb.${{ env.package_version }}.nupkg --api-key ${{ secrets.NUGET_KEY }}
76- dotnet nuget push FSharp.CosmosDb.Analyzer.${{ env.package_version }}.nupkg --api-key ${{ secrets.NUGET_KEY }}
77+ dotnet nuget push FSharp.CosmosDb.${{ env.package_version }}.nupkg --api-key ${{ secrets.NUGET_KEY }} --source ${{ env.NUGET_SOURCE }}
78+ dotnet nuget push FSharp.CosmosDb.Analyzer.${{ env.package_version }}.nupkg --api-key ${{ secrets.NUGET_KEY }} --source ${{ env.NUGET_SOURCE }}
7779
7880 - name : Get Action sha
7981 if : steps.check-issue.outputs.exists == 'true'
You can’t perform that action at this time.
0 commit comments