Skip to content

Commit aa4c953

Browse files
committed
Fix typo that preveneted upoading platform without mage tar
1 parent 886a6c6 commit aa4c953

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/daily-builds-amd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ jobs:
290290
./scripts/docker_image_platform.sh build --no-mage
291291
env:
292292
MGPLAT_IMAGE: ${{ env.MGPLAT_NO_MAGE_IMAGE }}
293-
MGPLAT_TAR: $${{ env.MGPLAT_NO_MAGE_TAR }}
293+
MGPLAT_TAR: ${{ env.MGPLAT_NO_MAGE_TAR }}
294294
CLEANUP: "true"
295295

296296
- name: "Upload memgraph platform docker image"

.github/workflows/daily-builds-arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ jobs:
305305
./scripts/docker_image_platform.sh build --no-mage
306306
env:
307307
MGPLAT_IMAGE: ${{ env.MGPLAT_NO_MAGE_IMAGE }}
308-
MGPLAT_TAR: $${{ env.MGPLAT_NO_MAGE_TAR }}
308+
MGPLAT_TAR: ${{ env.MGPLAT_NO_MAGE_TAR }}
309309
CLEANUP: "true"
310310

311311
- name: "Upload memgraph platform docker image"

scripts/docker_image_platform.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ build() {
6161

6262
mgplat_tar=$MGPLAT_TAR
6363
mgplat_tar_ext=${MGPLAT_TAR#*.}
64-
echo $mgplat_tar_ext
6564
if [[ "$mgplat_tar_ext" != "tar.gz" ]]; then
6665
mgplat_tar="$MGPLAT_TAR.tar.gz"
6766
fi
67+
echo -e "Creating $mgplat_tar"
6868
docker save $MGPLAT_IMAGE | gzip -f > "$DIR/dist/docker/$mgplat_tar"
6969

7070
if [[ "$CLEANUP" == "true" ]]; then

0 commit comments

Comments
 (0)