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 56f9967 commit 2157bd8Copy full SHA for 2157bd8
.github/workflows/publish-nuget.yml
@@ -29,12 +29,7 @@ jobs:
29
run: dotnet build KSFramework.sln --configuration Release --no-restore
30
31
- name: Pack NuGet
32
- run: dotnet pack src/KSFramework/KSFramework.csproj \
33
- --configuration Release \
34
- -p:PackageVersion=${{ env.PACKAGE_VERSION }} \
35
- --no-build -o out
+ run: dotnet pack src/KSFramework/KSFramework.csproj --configuration Release -p:PackageVersion=${{ env.PACKAGE_VERSION }} --no-build -o out
36
37
- name: Push to NuGet
38
- run: dotnet nuget push out/*.nupkg \
39
- --api-key ${{ secrets.NUGET_API_KEY }} \
40
- --source https://api.nuget.org/v3/index.json
+ run: dotnet nuget push out/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
0 commit comments