diff options
| author | Frank <[email protected]> | 2025-07-20 12:36:53 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-07-20 12:36:53 -0400 |
| commit | 933d50e25a7076e4587d2579c07f21f6bc02d07f (patch) | |
| tree | c9e6a30b9abfd034948404ee65f87ecdead7bbde /scripts | |
| parent | 800bee2722029ac6f531a4c18c7e52c1697a3c64 (diff) | |
| download | opencode-933d50e25a7076e4587d2579c07f21f6bc02d07f.tar.gz opencode-933d50e25a7076e4587d2579c07f21f6bc02d07f.zip | |
wip: github actions
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/publish-github-action.ts | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/publish-github-action.ts b/scripts/publish-github-action.ts deleted file mode 100755 index 9d0cbb7ee..000000000 --- a/scripts/publish-github-action.ts +++ /dev/null @@ -1,16 +0,0 @@ -#!/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` |
