From 5658d076ab298a89a1bb38ba197e659d4a1c36c3 Mon Sep 17 00:00:00 2001 From: Chris Czub Date: Fri, 17 Jun 2022 11:52:52 -0400 Subject: [PATCH] Wipe away existing tags during deployment --- .github/workflows/deploy-testnet.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy-testnet.yml b/.github/workflows/deploy-testnet.yml index 05e5b6698e..b70018b4e2 100644 --- a/.github/workflows/deploy-testnet.yml +++ b/.github/workflows/deploy-testnet.yml @@ -31,6 +31,8 @@ jobs: envs: TESTNET_HOST,VERSION script: | cd ~/penumbra + # Wipe away any existing version of this tag that might exist + git tag -d ${VERSION} git reset --hard git fetch --all --tags git pull