publish-github-action.ts 218 B

12345678
  1. #!/usr/bin/env bun
  2. import { $ } from "bun"
  3. await $`git tag -d github-v1`
  4. await $`git push origin :refs/tags/github-v1`
  5. await $`git tag -a github-v1 -m "Update github-v1 to latest"`
  6. await $`git push origin github-v1`