mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 13:24:19 +00:00
c2668bc953
Turns out this was broken because (a) we didn't have tags fetched, and (b) because the gh-release action we use is buggy. Release Notes: - N/A
8 lines
155 B
Bash
Executable file
8 lines
155 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
preview=""
|
|
if [[ "$GITHUB_REF_NAME" == *"-pre" ]]; then
|
|
preview="-p"
|
|
fi
|
|
|
|
gh release create -d "$GITHUB_REF_NAME" -F "$1" $preview
|