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