From 54e3e2b7e53f134d6aca6cd1f38f75706e4d77c7 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Fri, 29 Jan 2021 16:22:33 -0800 Subject: [PATCH] bump docker image to net 5 --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 7d02a31..650c2bc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,18 +7,18 @@ steps: - name: test - image: mcr.microsoft.com/dotnet/core/sdk:3.1 + image: docker pull mcr.microsoft.com/dotnet/runtime:5.0 commands: - dotnet build -c Release - dotnet test -c Release - name: deploy - image: mcr.microsoft.com/dotnet/core/sdk:3.1 + image: docker pull mcr.microsoft.com/dotnet/runtime:5.0 environment: API_KEY: from_secret: API_KEY commands: - - dotnet nuget push /build/encompass-cs/bin/Release/EncompassECS.Framework.*.nupkg -s https://api.nuget.org/v3/index.json -k $API_KEY + - dotnet nuget push /build/encompass-cs/bin/Release/EncompassECS.Framework.*.nupkg -s https://api.nuget.org/v3/index.json -k $API_KEY when: ref: - refs/tags/*.*.*