From c6c75e4c69637b4545ef5f08017cce50070584c9 Mon Sep 17 00:00:00 2001 From: yhirose Date: Mon, 23 Feb 2026 00:01:58 -0500 Subject: [PATCH] Remove tag-latest.yml --- .github/workflows/tag-latest.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/tag-latest.yml diff --git a/.github/workflows/tag-latest.yml b/.github/workflows/tag-latest.yml deleted file mode 100644 index 9cca616..0000000 --- a/.github/workflows/tag-latest.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Update latest tag - -on: - release: - types: [published] - -jobs: - tag-latest: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Force-update latest tag - run: | - git tag -f latest - git push origin latest --force