Files
version_verify/.gitea/workflows/push_to_main.yaml
Bryce Thorup 0ce2400f55
All checks were successful
Push to main / Reset-Version-Tag (push) Successful in 4s
init
2024-01-01 16:09:23 -07: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