mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 13:54:01 +00:00
9 lines
183 B
TypeScript
Executable File
9 lines
183 B
TypeScript
Executable File
#!/usr/bin/env bun
|
|
|
|
import { $ } from "bun"
|
|
|
|
await $`git tag -d v1`
|
|
await $`git push origin :refs/tags/v1`
|
|
await $`git tag -a v1 -m "Update v1 to latest"`
|
|
await $`git push origin v1`
|