File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 1212 - latest
1313 - stable
1414 - test
15+ - 2.7.3
1516 build_allinone :
1617 type : boolean
1718 description : ' Build the All-In-One image'
@@ -66,16 +67,16 @@ jobs:
6667 https://api.github.com/repos/${{ github.repository }}/releases/latest \
6768 | jq -r '.tag_name'
6869 )
69- IS_LATEST="false "
70+ IS_LATEST="true "
7071 if [[ "${LATEST_TAG}" == "${{ github.event.release.tag_name }}" ]]; then
7172 IS_LATEST="true"
7273 fi;
7374
7475 # Control which images to build
75- echo "BUILD_ALLINONE=${{ inputs.build_allinone || false }}" >> "${GITHUB_ENV}"
76- echo "BUILD_FRONTEND=${{ inputs.build_frontend || false }}" >> "${GITHUB_ENV}"
77- echo "BUILD_NODESERVICE=${{ inputs.build_nodeservice || false }}" >> "${GITHUB_ENV}"
78- echo "BUILD_APISERVICE=${{ inputs.build_apiservice || false }}" >> "${GITHUB_ENV}"
76+ echo "BUILD_ALLINONE=${{ inputs.build_allinone || true }}" >> "${GITHUB_ENV}"
77+ echo "BUILD_FRONTEND=${{ inputs.build_frontend || true }}" >> "${GITHUB_ENV}"
78+ echo "BUILD_NODESERVICE=${{ inputs.build_nodeservice || true }}" >> "${GITHUB_ENV}"
79+ echo "BUILD_APISERVICE=${{ inputs.build_apiservice || true }}" >> "${GITHUB_ENV}"
7980
8081 # Image names
8182 ALLINONE_IMAGE_NAMES=lowcoderorg/lowcoder-ce:${IMAGE_TAG}
You can’t perform that action at this time.
0 commit comments