We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be78d51 commit 64798aaCopy full SHA for 64798aa
.github/workflows/virtualmin+cloudmin.dev+slib.yml
@@ -54,10 +54,9 @@ jobs:
54
set -euo pipefail
55
56
# Bootstrap build
57
- source bootstrap.bash $([[ "$IS_RELEASE" == "true" ]] || echo "--testing") $([[ "$IS_PRERELEASE" == "true" ]] && echo "--prerelease")
58
source bootstrap.bash \
59
- $([[ "$IS_RELEASE" != "true" ]] && echo "--testing") \
60
- $([[ "$IS_PRERELEASE" == "true" ]] && echo "--prerelease")
+ $([[ "$IS_RELEASE" == "true" ]] && echo "--release" || echo "--testing") \
+ $([[ "$IS_PRERELEASE" == "true" ]] && echo "--prerelease")
61
62
# Get package version
63
pkg_version=$(get_remote_git_tag_version "$GH_REPO" "$GH_TOKEN" "$IS_RELEASE")
0 commit comments