Skip to content

drop py3.8, add py3.13 (#29) #19

drop py3.8, add py3.13 (#29)

drop py3.8, add py3.13 (#29) #19

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