Skip to content

Commit 130e98b

Browse files
committed
update github action
1 parent 923ba87 commit 130e98b

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/scripts/on_release_pushed.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ for FLOAT_TAG in dev stable latest; do
5757
fi
5858

5959
TARGET_VERSION="${TARGET_TAG#v}"
60+
61+
# 🔥 Check if the source image exists
62+
if ! docker buildx imagetools inspect "$IMAGE:$TARGET_VERSION" &>/dev/null; then
63+
echo "⚠️ Source image $IMAGE:$TARGET_VERSION does not exist — skipping $FLOAT_TAG"
64+
continue
65+
fi
66+
6067
echo "🔁 Creating manifest for $IMAGE:$FLOAT_TAG from $IMAGE:$TARGET_VERSION"
6168
docker buildx imagetools create \
6269
--tag "$IMAGE:$FLOAT_TAG" \

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.5-alpha.4
1+
0.0.5-alpha.5

subvortex/auto_upgrader/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "subvortex-auto-upgrader"
7-
version = "0.0.5-alpha.4"
7+
version = "0.0.5-alpha.5"
88
description = "SubVortex Auto Upgrader"
99
authors = [{ name = "Eclipse Vortex", email = "subvortex.bt@gmail.com" }]
1010
readme = "README.md"

subvortex/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.5-alpha.4"
1+
__version__ = "0.0.5-alpha.5"

0 commit comments

Comments
 (0)