mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 21:32:40 +00:00
9 lines
155 B
Text
9 lines
155 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
preview=""
|
||
|
if [[ "$GITHUB_REF_NAME" == *"-pre" ]]; then
|
||
|
preview="-p"
|
||
|
fi
|
||
|
|
||
|
gh release create -d "$GITHUB_REF_NAME" -F "$1" $preview
|