From 9fc14d0cc452db80c891c4732de33ad7dda85b7d Mon Sep 17 00:00:00 2001 From: Bryce Thorup Date: Mon, 1 Jan 2024 15:49:19 -0700 Subject: [PATCH] test --- .gitea/push_to_main.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitea/push_to_main.yaml b/.gitea/push_to_main.yaml index 5f79123..b9a9bdb 100644 --- a/.gitea/push_to_main.yaml +++ b/.gitea/push_to_main.yaml @@ -5,9 +5,13 @@ on: branches: [main] jobs: - publish: + Reset-Version-Tag: runs-on: debian-bullseye - steps: - - name: reset version tag - run: "git tag -d v1 && git push --delete origin v1 && git tag v1 && git push --tags" + - name: Check out repository code + uses: actions/checkout@v3 + - name: Reset version tag + run: git tag -d v1 + run: git push --delete origin v1 + run: git tag v1 + run: git push --tags