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