Files
bryce ede0a96dae
Push to main / Reset-Version-Tag (push) Successful in 5s
init
2026-05-15 10:37:03 -06:00

17 lines
332 B
YAML

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