Skip to content

Commit

Permalink
Update dotnet and remove extra param in nuget push
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelGosselin committed May 25, 2020
1 parent e035fc2 commit d5ee04a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
dotnet-version: 3.1.300

- name: Install dependencies
run: dotnet restore
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
dotnet-version: 3.1.300

- name: Install dependencies
run: dotnet restore
Expand All @@ -35,4 +35,4 @@ jobs:
- name: Push to nuget.org
env:
NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }}
run: dotnet nuget push "src/AspNetCore.TypedActionResults/bin/Release/AspNetCore.TypedActionResults.*.nupkg" -n -s https://api.nuget.org/v3/index.json -k $env:NUGET_APIKEY
run: dotnet nuget push "src/AspNetCore.TypedActionResults/bin/Release/AspNetCore.TypedActionResults.*.nupkg" -s https://api.nuget.org/v3/index.json -k $env:NUGET_APIKEY

0 comments on commit d5ee04a

Please sign in to comment.