-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Workaround for unix nuget not supporting keys
- Loading branch information
Kasper Hesthaven
authored
Jun 25, 2020
1 parent
ac2664e
commit 5b61f7c
Showing
1 changed file
with
1 addition
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,8 +56,6 @@ jobs: | |
|
||
- name: Setup .NET Core SDK | ||
uses: actions/[email protected] | ||
env: | ||
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_AUTH_TOKEN }} | ||
with: | ||
dotnet-version: 2.2.x | ||
source-url: https://api.nuget.org/v3/index.json | ||
|
@@ -69,4 +67,4 @@ jobs: | |
run: dotnet pack --configuration Release -p:PackageVersion=$VERSION | ||
|
||
- name: Push NuGet package | ||
run: dotnet nuget push bin/Release/DentsuDataLab.AccuRanker.$VERSION.nupkg | ||
run: dotnet nuget push bin/Release/DentsuDataLab.AccuRanker.$VERSION.nupkg -k ${{ secrets.NUGET_AUTH_TOKEN }} |