Skip to content

Commit 9d4d79e

Browse files
FalkWolskyludomikula
authored andcommitted
Update docker-images.yml
1 parent 163a869 commit 9d4d79e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/docker-images.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
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}

0 commit comments

Comments
 (0)