File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 3030 - name : Build Project
3131 run : dotnet build ./Testimize/Testimize.csproj --configuration Release --no-restore
3232
33+ - name : Ensure output directory exists
34+ run : mkdir -p ${{ github.workspace }}/nupkg
35+
3336 - name : Pack NuGet Package
34- run : dotnet pack ./Testimize/Testimize.csproj --configuration Release --no-build --output ./nupkg
37+ run : dotnet pack ./Testimize/Testimize.csproj --configuration Release --no-build --output ${{ github.workspace }}/nupkg
38+
39+ - name : List contents of nupkg folder (debugging)
40+ run : ls -la ${{ github.workspace }}/nupkg
3541
3642 - name : Push to NuGet.org
37- run : dotnet nuget push . /nupkg/*.nupkg --api-key ${{ secrets.NUGETKEY }} --source https://api.nuget.org/v3/index.json
43+ run : dotnet nuget push ${{ github.workspace }} /nupkg/*.nupkg --api-key ${{ secrets.NUGETKEY }} --source https://api.nuget.org/v3/index.json
You can’t perform that action at this time.
0 commit comments