Files
container_publish/.gitea/workflows/push_to_main.yaml
Bryce Thorup 19dd8f0430
All checks were successful
Push to main / Reset-Version-Tag (push) Successful in 7s
v2
2026-03-05 07:14:39 -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 v2 || true
- run: git push --delete origin v2 || true
- run: git tag v2
- run: git push --tags