mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-24 06:19:37 +00:00
09424edc35
- Refactor duplicated inline script from ci.yml to `script/determine-release-channel` - Remove references to non-existent '-nightly' release tags Release Notes: - N/A
18 lines
308 B
Bash
Executable file
18 lines
308 B
Bash
Executable file
#!/bin/bash
|
|
|
|
channel=$(cat crates/zed/RELEASE_CHANNEL)
|
|
|
|
tag_suffix=""
|
|
case $channel in
|
|
stable)
|
|
;;
|
|
preview)
|
|
tag_suffix="-pre"
|
|
;;
|
|
*)
|
|
echo "this must be run on either of stable|preview release branches" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exec script/lib/bump-version.sh zed v "$tag_suffix" patch
|