Skip to content

bump precommit versions (#27) #17

bump precommit versions (#27)

bump precommit versions (#27) #17

Workflow file for this run

name: Auto Tag
on:
push:
branches:
- main
permissions:
contents: write
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
# delete local tag
git tag -d v1 || true
# Delete remote tag
git push origin :refs/tags/v1 || true
git tag v1
git push --tags