Skip to content

remove bundler v2 (#32) #1

remove bundler v2 (#32)

remove bundler v2 (#32) #1

Workflow file for this run

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