We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 770f850 commit 9cce6afCopy full SHA for 9cce6af
.github/workflows/build.yaml
@@ -67,7 +67,7 @@ jobs:
67
# Only include if build number >= 7290
68
if [[ ! -z "$BUILD_NUM" ]] && [[ $BUILD_NUM -ge $MIN_BUILD ]]; then
69
echo "Including version: $tag (build $BUILD_NUM, full version $VERSION)"
70
- VERSIONS_JSON=$(echo $VERSIONS_JSON | jq --arg name "$tag" --arg filename "v$VERSION-stable" --arg short "$BUILD_NUM" --arg fullver "$VERSION" '. += [{"name": $name, "filename": $filename, "short_name": $short, "full_version": $fullver}]')
+ VERSIONS_JSON=$(echo $VERSIONS_JSON | jq -c --arg name "$tag" --arg filename "v$VERSION-stable" --arg short "$BUILD_NUM" --arg fullver "$VERSION" '. += [{"name": $name, "filename": $filename, "short_name": $short, "full_version": $fullver}]')
71
else
72
echo "Skipping version: $tag (build $BUILD_NUM < $MIN_BUILD)"
73
fi
0 commit comments