File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
33set -euo pipefail
4- rm -rf " bin/release/ "
4+ rm -rf " bin/Release "
55dotnet pack --configuration Release --include-symbols -p:SymbolPackageFormat=snupkg
66package=$( find ./bin/Release -name " *.nupkg" -type f | head -n 1)
77dotnet nuget push " $package " --source " https://api.nuget.org/v3/index.json" --api-key " $NUGET_API_KEY "
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -euo pipefail
3- rm -rf " bin/release/ "
3+ rm -rf " bin/Release "
44dotnet pack --configuration Release --include-symbols -p:SymbolPackageFormat=snupkg
55package=$( find ./bin/Release -name " *.nupkg" -type f | head -n 1)
66dotnet nuget push " $package " --source " https://api.nuget.org/v3/index.json" --api-key " $NUGET_API_KEY "
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -euo pipefail
3- rm -rf " bin/release/ "
3+ rm -rf " bin/Release "
44dotnet pack --configuration Release --include-symbols -p:SymbolPackageFormat=snupkg
55package=$( find ./bin/Release -name " *.nupkg" -type f | head -n 1)
66dotnet nuget push " $package " --source " https://api.nuget.org/v3/index.json" --api-key " $NUGET_API_KEY "
You can’t perform that action at this time.
0 commit comments