From 36dfdfa2c4eaab19f87464491206588b804fb436 Mon Sep 17 00:00:00 2001 From: Khwezi Mngoma Date: Sat, 14 Mar 2026 12:27:43 +0200 Subject: [PATCH] Enabled clone on deploy step --- .drone.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index fe588b9..322184b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -62,6 +62,9 @@ name: deploy depends_on: - package +clone: + disable: true + steps: - name: uat image: appleboy/drone-ssh @@ -76,4 +79,4 @@ steps: - docker pull khwezi/blazortest:latest - docker stop blazortest 2>NUL || echo "Container not running" - docker rm blazortest 2>NUL || echo "Container not found" - - docker run -d --name blazortest --restart unless-stopped -e ASPNETCORE_ENVIRONMENT=Development -p 4001:7007 khwezi/blazortest:latest + - docker run -d --name blazortest --restart unless-stopped -e ASPNETCORE_ENVIRONMENT=Development -p 400:7007 khwezi/blazortest:latest