init version
Push to main / Reset-Version-Tag (push) Successful in 6s

This commit is contained in:
2026-05-14 10:55:18 -06:00
commit fa55659004
3 changed files with 70 additions and 0 deletions
+16
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