File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ jobs:
3131 run : dotnet build ./Testimize/Testimize.csproj --configuration Release --no-restore
3232
3333 - name : Ensure output directory exists
34- run : mkdir -p ${{ github.workspace }} /nupkg
34+ run : mkdir -p . /nupkg
3535
3636 - name : Pack NuGet Package
37- run : dotnet pack ./Testimize/Testimize.csproj --configuration Release --no-build --output ${{ github.workspace }} /nupkg
37+ run : dotnet pack ./Testimize/Testimize.csproj --configuration Release --no-build --output . /nupkg
3838
3939 - name : List contents of nupkg folder (debugging)
40- run : ls -la ${{ github.workspace }} /nupkg
40+ run : ls -la . /nupkg
4141
4242 - name : Push to NuGet.org
43- run : dotnet nuget push ${{ github.workspace }} /nupkg/*.nupkg --api-key ${{ secrets.NUGETKEY }} --source https://api.nuget.org/v3/index.json
43+ run : dotnet nuget push . /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