remove bundler v2 (#32) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Tags | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
id-token: write | |
jobs: | |
push-tags: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Bump Version and Push Tag | |
id: tag_version | |
uses: mathieudutour/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
tag_prefix: v | |
default_bump: patch | |
- uses: actions/checkout@v4 | |
with: | |
ref: "main" | |
- name: Update latest minimal tag | |
run: | | |
git push --delete origin v1 || true | |
git tag --delete v1 || true | |
git tag v1 | |
git push origin v1 |