This commit is contained in:
Bryce Thorup
2024-08-21 07:28:30 -06:00
parent 84ae59cec3
commit c952efedf2
4 changed files with 26 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
name: Push to main
on:
push:
branches: [main]
jobs:
Reset-Version-Tag:
runs-on: debian-bullseye
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: git tag -d v1 || true
- run: git push --delete origin v1 || true
- run: git tag v1
- run: git push --tags