Drone
Some checks failed
continuous-integration/drone/push Build encountered an error

This commit is contained in:
Elias Jansson
2025-06-03 23:05:53 +02:00
parent 4da4a34443
commit c4efcc249b

View File

@@ -3,14 +3,11 @@ type: docker
name: default
steps:
- name: build-dotnet
image: mcr.microsoft.com/dotnet/sdk:6.0
environment:
LANG: en_US.UTF-8
LC_ALL: en_US.UTF-8
DOTNET_CLI_UI_LANGUAGE: en-US
commands:
- dotnet publish Aberwyn/Aberwyn.csproj -c Release -o out
- name: build-dotnet
image: alpine
commands:
- echo "Docker build will handle dotnet publish"
- name: build-docker
image: plugins/docker
@@ -27,20 +24,27 @@ steps:
- latest
insecure: true
- name: restart-unraid-container
image: appleboy/drone-ssh
settings:
host: 192.168.1.108
port: 22
username:
from_secret: unraid_ssh_user
key:
from_secret: unraid_ssh_private_key
script:
- docker pull 192.168.1.9:3000/tai/aberwyn/aberwyn:latest
- docker stop Aberwyn || true
- docker rm Aberwyn || true
- docker run -d --name='Aberwyn' --net='br0' -e TZ='Europe/Berlin' -p 80:80 192.168.1.9:3000/tai/aberwyn/aberwyn:latest
- name: restart-unraid-container
image: appleboy/drone-ssh
settings:
host: 192.168.1.108
port: 22
username:
from_secret: unraid_ssh_user
key:
from_secret: unraid_ssh_private_key
script:
- docker pull 192.168.1.9:3000/tai/aberwyn/aberwyn:latest
- docker stop Aberwyn || true
- docker rm Aberwyn || true
- docker volume create aberwyn_config || true
- docker run -d \
--name='Aberwyn' \
--net='br0' \
-e TZ='Europe/Berlin' \
-p 80:80 \
-v aberwyn_config:/app/infrastructure \
192.168.1.9:3000/tai/aberwyn/aberwyn:latest
- name: notify-result
image: alpine