Skip to content

Commit

Permalink
fix(ci): don't rebuild when packing
Browse files Browse the repository at this point in the history
  • Loading branch information
ProbablePrime committed Jan 4, 2024
1 parent 3da4a81 commit e774def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
msbuild.exe CSCore.sln /p:Platform="Any CPU" /p:Configuration=Release
- name: Pack
shell: cmd
run: nuget pack ./CSCore/CSCore.csproj -OutputDirectory nupkgs -Build -Version ${{ env.VERSION }} -Properties version="${{ env.VERSION }}";Configuration="Release";Platform="AnyCPU"
run: nuget pack ./CSCore/CSCore.csproj -OutputDirectory nupkgs -Version ${{ env.VERSION }} -Properties version="${{ env.VERSION }}";Configuration="Release";Platform="AnyCPU"
- name: Nuget Publish
shell: cmd
run: nuget push nupkgs\*.nupkg -ApiKey ${{ secrets.NUGET_TOKEN }} -Source https://api.nuget.org/v3/index.json

0 comments on commit e774def

Please sign in to comment.