Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

fix output var name (#28) #28

fix output var name (#28)

fix output var name (#28) #28

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