Browse Source

Switch .drone.yml to Ubuntu to get things working

Will likely switch to dotnet or alpine later
master
Abheek Dhawan 3 years ago
parent
commit
6d4b3d97ea
  1. 15
      .drone.yml

15
.drone.yml

@ -5,14 +5,15 @@ type: docker
steps: steps:
- name: build - name: build
image: alpine image: ubuntu
commands: commands:
- apk add curl - apt install wget
- apk add bash - apt install zip
- curl -LJO https://dot.net/v1/dotnet-install.sh - wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb
- chmod +x dotnet-install.sh - dpkg -i packages-microsoft-prod.deb
- ./dotnet-install.sh -c 5.0 - apt update
- apk add zip - apt install apt-transport-https
- apt install dotnet-sdk-5.0
- ./build.sh - ./build.sh
- ./zip-files.sh - ./zip-files.sh

Loading…
Cancel
Save