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.
2 parents c99b205 + cf41a09 commit 09d5dd0Copy full SHA for 09d5dd0
1 file changed
.github/workflows/dotnet_tool_deploy.yml
@@ -34,7 +34,9 @@ jobs:
34
echo "Syncing version: $VERSION"
35
36
- name: Build and Pack as .NET tool
37
- run: dotnet cake --target Pack-DotNetTool --package-version ${{ steps.version.outputs.version }}
+ run: |
38
+ dotnet tool restore
39
+ dotnet cake --target Pack-DotNetTool --package-version ${{ steps.version.outputs.version }}
40
41
- name: Publish to NuGet
42
run: dotnet nuget push ./artifacts/nupkgs/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
0 commit comments