mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-28 20:15:20 +03:00
Merge pull request #3333 from gitbutlerapp/fix-release-script-for-windows
feat(release): skip building windows if job is release
This commit is contained in:
commit
aaa7d74bce
@ -165,6 +165,11 @@ jq '.package.version="'"$VERSION"'"' "$CONFIG_PATH" >"$TMP_DIR/tauri.conf.json"
|
||||
|
||||
FEATURES=""
|
||||
|
||||
# Remove when we we have signing working on windows
|
||||
if [ "$CHANNEL" == "release" ] && [ "$OS" = "windows" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "$CHANNEL" == "nightly" ]; then
|
||||
FEATURES="$FEATURES devtools"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user