wip: vscode extension

This commit is contained in:
Frank
2025-07-20 11:33:41 -04:00
parent f9a47fe5a3
commit 0e1565449e
18 changed files with 1005 additions and 2 deletions

16
sdks/github/script/release.ts Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bun
import { $ } from "bun"
try {
await $`git tag -d github-v1`
await $`git push origin :refs/tags/github-v1`
} catch (e: any) {
if (e instanceof $.ShellError && e.stderr.toString().match(/tag \S+ not found/)) {
console.log("tag not found, continuing...")
} else {
throw e
}
}
await $`git tag -a github-v1 -m "Update github-v1 to latest"`
await $`git push origin github-v1`