Removed LS commands for nuget publish
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is passing

This commit is contained in:
Xander Sigler 2022-01-18 12:03:54 -08:00
parent 4b447c3cc8
commit 73d46c82f9

View File

@ -13,16 +13,14 @@ steps:
- echo Drone build number is ${DRONE_BUILD_NUMBER}
- echo Revision is $((${DRONE_BUILD_NUMBER}-$BUILD_NUM_SINCE_LAST_MINOR_VERSION))
- name: test
- name: nuget-publish
image: mcr.microsoft.com/dotnet/sdk:5.0
environment:
NUGET_API_KEY:
from_secret: Nuget_Api_key
commands:
- ls
- dotnet build
- dotnet pack -p:Version=1.0.$((${DRONE_BUILD_NUMBER}-$BUILD_NUM_SINCE_LAST_MINOR_VERSION)) -o .
- ls
- dotnet nuget push *.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json
- name: finish