Compare commits

..

2 Commits

Author SHA1 Message Date
vorotamoroz 8e24739b96 Tag tidying 2026-06-24 05:55:05 +01:00
vorotamoroz 2d5b5da904 Merge pull request #974 from vrtmrz/0_25_78
Releasing v0.25.78
2026-06-23 20:19:31 +09:00
+3 -2
View File
@@ -54,6 +54,7 @@ jobs:
id: meta id: meta
run: | run: |
VERSION=$(jq -r '.version' manifest.json) VERSION=$(jq -r '.version' manifest.json)
MAJOR_MINOR=$(echo "${VERSION}" | cut -d. -f1,2)
SHORT_SHA=$(git rev-parse --short HEAD) SHORT_SHA=$(git rev-parse --short HEAD)
IMAGE="ghcr.io/${{ github.repository_owner }}/livesync-cli" IMAGE="ghcr.io/${{ github.repository_owner }}/livesync-cli"
@@ -61,10 +62,10 @@ jobs:
TAGS="" TAGS=""
if [[ "${{ github.ref }}" == refs/tags/* ]]; then if [[ "${{ github.ref }}" == refs/tags/* ]]; then
# Stable release builds # Stable release builds
TAGS="${IMAGE}:${VERSION}-cli,${IMAGE}:latest,${IMAGE}:${VERSION}-sha-${SHORT_SHA}-cli" TAGS="${IMAGE}:${VERSION}-cli,${IMAGE}:${MAJOR_MINOR}-cli,${IMAGE}:latest,${IMAGE}:${VERSION}-sha-${SHORT_SHA}-cli"
elif [[ "${{ github.ref }}" == refs/heads/main ]]; then elif [[ "${{ github.ref }}" == refs/heads/main ]]; then
# Bleeding-edge / nightly builds # Bleeding-edge / nightly builds
TAGS="${IMAGE}:edge,${IMAGE}:${VERSION}-dev-sha-${SHORT_SHA}-cli" TAGS="${IMAGE}:edge"
else else
# Other branches / manual run fallback # Other branches / manual run fallback
TAGS="${IMAGE}:${VERSION}-dev-sha-${SHORT_SHA}-cli" TAGS="${IMAGE}:${VERSION}-dev-sha-${SHORT_SHA}-cli"