summaryrefslogtreecommitdiffhomepage
path: root/script/release
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-09-14 02:07:45 -0400
committerDax Raad <[email protected]>2025-09-14 02:07:58 -0400
commitce9d2ee04fc6ac1b040245f19555fbd9c55c2252 (patch)
treec2aced188b1036a18fc79bdaf2fb5403b72ed82f /script/release
parent4b30705c425ceb832b7c91940c6f4f0674e815aa (diff)
downloadopencode-ce9d2ee04fc6ac1b040245f19555fbd9c55c2252.tar.gz
opencode-ce9d2ee04fc6ac1b040245f19555fbd9c55c2252.zip
ci: script
Diffstat (limited to 'script/release')
-rwxr-xr-xscript/release4
1 files changed, 3 insertions, 1 deletions
diff --git a/script/release b/script/release
index 5cb938114..13761a1ec 100755
--- a/script/release
+++ b/script/release
@@ -1,3 +1,5 @@
#!/usr/bin/env bash
-gh workflow run publish.yml -f bump="patch"
+BUMP_TYPE=${1:-patch}
+
+gh workflow run publish.yml -f bump="$BUMP_TYPE"