Skip to content

Commit 900f5b3

Browse files
committed
Fix tag order
Signed-off-by: Terence <terencelimxp@gmail.com>
1 parent 51087fc commit 900f5b3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ jobs:
8989
echo "Only push to latest tag if tag is the highest semver version $HIGHEST_SEMVER_TAG"
9090
if [ "${VERSION_WITHOUT_PREFIX}" = "${HIGHEST_SEMVER_TAG:1}" ]
9191
then
92-
docker tag feastdev/feast-${{ matrix.component }}:latest gcr.io/kf-feast/feast-${{ matrix.component }}:${VERSION_WITHOUT_PREFIX}
93-
docker tag gcr.io/kf-feast/feast-${{ matrix.component }}:latest gcr.io/kf-feast/feast-${{ matrix.component }}:${VERSION_WITHOUT_PREFIX}
92+
docker tag gcr.io/kf-feast/feast-${{ matrix.component }}:${VERSION_WITHOUT_PREFIX} feastdev/feast-${{ matrix.component }}:latest
93+
docker tag gcr.io/kf-feast/feast-${{ matrix.component }}:${VERSION_WITHOUT_PREFIX} gcr.io/kf-feast/feast-${{ matrix.component }}:latest
9494
docker push feastdev/feast-${{ matrix.component }}:latest
9595
docker push gcr.io/kf-feast/feast-${{ matrix.component }}:latest
9696
fi

0 commit comments

Comments
 (0)