diff --git a/.github/workflows/update-tags.yml b/.github/workflows/update-tags.yml deleted file mode 100644 index 39f1b55..0000000 --- a/.github/workflows/update-tags.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Update Tags - -on: - push: - tags: - - v*.*.* - -jobs: - generate: - runs-on: ubuntu-latest - permissions: - contents: write - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Parse semver - uses: madhead/semver-utils@v2 - id: version - with: - version: ${{ github.ref_name }} - - - name: Update tags - run: | - TAGS='v${{ steps.version.outputs.major }} v${{ steps.version.outputs.major }}.${{ steps.version.outputs.minor }}' - - for t in $TAGS; do - git tag -f "$t" - git push origin ":$t" 2>/dev/null || true - git push origin "$t" - done