Skip to content

Bump Tag

Bump Tag #2

Workflow file for this run

name: Bump Tag
on:
workflow_dispatch:
jobs:
bump-tag:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main
- name: Bump v1 tag
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git tag -f v1
git push origin v1 -f