From b5c6392c343e40066ebad96861ca9272c061e966 Mon Sep 17 00:00:00 2001 From: jhot Date: Wed, 1 Nov 2023 09:15:49 -0600 Subject: [PATCH] Unique builder name --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 866d661..da89f4b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,7 +13,7 @@ steps: - apt-get update && apt-get install -y curl # install dependencies from apt - curl -fsSL https://get.docker.com -o get-docker.sh # install docker - sh ./get-docker.sh - - docker buildx create --name builder --use + - docker buildx create --name ${DRONE_COMMIT_SHA}${DRONE_BUILD_NUMBER} --use - sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d # install task - ./bin/task build # build the docker image