From f795ba24f8837108484222d2fbf753b85b29a814 Mon Sep 17 00:00:00 2001 From: Kieron Morris Date: Sun, 9 Mar 2025 20:36:19 +0000 Subject: [PATCH] Further tweaks to artefact upload step DroneCI wasn't happy with the mv of `Asuro.iso` - changed to a cp. --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 66197904..bb5d26c9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -38,7 +38,7 @@ steps: commands: - export BUILD_VERSION=$(git rev-parse --short HEAD) - export ISO_NAME="Asuro-${BUILD_VERSION}.iso" - - mv Asuro.iso "$ISO_NAME" + - cp Asuro.iso "$ISO_NAME" # Upload commit-specific ISO - |