From 9650b3ab94c60e2d2491d471975ae9ebedc9f6d0 Mon Sep 17 00:00:00 2001 From: Bryce Thorup Date: Mon, 1 Jan 2024 15:55:27 -0700 Subject: [PATCH] be true --- .gitea/workflows/push_to_main.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/push_to_main.yaml b/.gitea/workflows/push_to_main.yaml index b9f7d7c..d4b219c 100644 --- a/.gitea/workflows/push_to_main.yaml +++ b/.gitea/workflows/push_to_main.yaml @@ -10,4 +10,7 @@ jobs: steps: - name: Check out repository code uses: actions/checkout@v3 - - run: git tag -d v1 && git push --delete origin v1 && git tag v1 && git push --tags + - run: git tag -d v1 || true + - run: git push --delete origin v1 || true + - run: git tag v1 + - run: git push --tags