File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -139,10 +139,10 @@ jobs:
139
139
- name : Build and push ARM64 image for RONDB_VERSION_LTS
140
140
run : |
141
141
if [[ "${{ startsWith(github.ref_name, 'release-') }}" == "true" ]]; then
142
- TAG="hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_LTS-latest"
143
- else
144
142
VERSION="$(< "./VERSION" sed -e 's/^[[:space:]]*//')"
145
143
TAG="hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_LTS-$VERSION"
144
+ else
145
+ TAG="hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_LTS-latest"
146
146
fi
147
147
docker buildx build . \
148
148
--tag $TAG \
@@ -157,11 +157,11 @@ jobs:
157
157
- name : Build and push ARM64 image for RONDB_VERSION_STABLE
158
158
run : |
159
159
if [[ "${{ startsWith(github.ref_name, 'release-') }}" == "true" ]]; then
160
- TAGS="--tag hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_STABLE-latest"
161
- TAGS+=" --tag hopsworks/$ARM_IMAGE_NAME:latest"
162
- else
163
160
VERSION="$(< "./VERSION" sed -e 's/^[[:space:]]*//')"
164
161
TAGS="--tag hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_STABLE-$VERSION"
162
+ else
163
+ TAGS="--tag hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_STABLE-latest"
164
+ TAGS+=" --tag hopsworks/$ARM_IMAGE_NAME:latest"
165
165
fi
166
166
docker buildx build . \
167
167
$TAGS \
You can’t perform that action at this time.
0 commit comments