From f92cf62a546648e0423c28e285b6cf333c9abdc9 Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Tue, 1 Apr 2025 13:55:06 +0000 Subject: [PATCH] Remove tag cutting workflow (#1854) --- .github/workflows/cut-new-tag.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/cut-new-tag.yml diff --git a/.github/workflows/cut-new-tag.yml b/.github/workflows/cut-new-tag.yml deleted file mode 100644 index cb14ea903..000000000 --- a/.github/workflows/cut-new-tag.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Cut a new tag - -on: - workflow_dispatch: - inputs: - tag_name: - type: string - description: The full name of the new tag to push to the latest commit to main - -jobs: - push_tag: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - run: git tag ${{ github.event.inputs.tag_name }} - - run: git push origin ${{ github.event.inputs.tag_name }}