From 0da41720a635e932c522dbfd951f870799d805ad Mon Sep 17 00:00:00 2001 From: paolino Date: Mon, 13 Jan 2025 15:58:16 +0000 Subject: [PATCH] Remove tag-release-candidate script --- .../buildkite/main/tag-release-candidate.sh | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100755 scripts/buildkite/main/tag-release-candidate.sh diff --git a/scripts/buildkite/main/tag-release-candidate.sh b/scripts/buildkite/main/tag-release-candidate.sh deleted file mode 100755 index 787640a526a..00000000000 --- a/scripts/buildkite/main/tag-release-candidate.sh +++ /dev/null @@ -1,30 +0,0 @@ -#! /usr/bin/env bash - -set -euox pipefail - -git config --global user.email "gha@cardanofoundation.org" -git config --global user.name "Github Action" -git remote set-url origin "git@github.com:cardano-foundation/cardano-wallet.git" - -TAG="release-candidate-tag" -date=$(git show -s --format=%ci | awk '{print $1}') - -DTAG="$TAG/$date" -LATEST="rc-latest" - -git tag --delete "$DTAG" || true -git tag --delete "$LATEST" || true - -git push origin --delete "$DTAG" || true -git push origin --delete "$LATEST" || true - -git tag "$DTAG" "$BUILDKITE_COMMIT" -git tag "$LATEST" "$BUILDKITE_COMMIT" - -git push origin "$DTAG" -git push origin "$LATEST" - -# we wait 2 minutes to let buildite build the windows artifacts for the rc-latest tag -# it will be fast as they are already built for the same commit, do cached by nix - -sleep 120