From af1cbbb81ea59680f6ac2543d574d79ecfddc98e Mon Sep 17 00:00:00 2001 From: Adhish-Krishna Date: Fri, 27 Feb 2026 10:43:37 +0530 Subject: [PATCH 1/2] update release workflow to keep the dashboard and core image names in lower case --- .github/workflows/release.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 735f55c..14a83c1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,6 +64,9 @@ jobs: VERSION="${{ steps.get_tag.outputs.version }}" TAG="${{ steps.get_tag.outputs.tag }}" PREV_TAG="${{ steps.prev_tag.outputs.prev_tag }}" + OWNER_LOWER=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]') + CORE_IMAGE="${{ env.REGISTRY }}/${OWNER_LOWER}/simplens-core" + DASHBOARD_IMAGE="${{ env.REGISTRY }}/${OWNER_LOWER}/simplens-dashboard" # Get commits if [ -z "$RANGE" ]; then @@ -126,12 +129,12 @@ jobs: BODY="$BODY## 🐳 Docker Images"$'\n\n' BODY="$BODY| Service | Image |"$'\n' BODY="$BODY|---------|-------|"$'\n' - BODY="$BODY| Core | \`${{ env.REGISTRY }}/${{ env.CORE_IMAGE_NAME }}:$VERSION\` |"$'\n' - BODY="$BODY| Dashboard | \`${{ env.REGISTRY }}/${{ env.DASHBOARD_IMAGE_NAME }}:$VERSION\` |"$'\n\n' + BODY="$BODY| Core | \`${CORE_IMAGE}:$VERSION\` |"$'\n' + BODY="$BODY| Dashboard | \`${DASHBOARD_IMAGE}:$VERSION\` |"$'\n\n' BODY="$BODY\`\`\`bash"$'\n' BODY="$BODY# Pull images for this release"$'\n' - BODY="${BODY}docker pull ${{ env.REGISTRY }}/${{ env.CORE_IMAGE_NAME }}:$VERSION"$'\n' - BODY="${BODY}docker pull ${{ env.REGISTRY }}/${{ env.DASHBOARD_IMAGE_NAME }}:$VERSION"$'\n' + BODY="${BODY}docker pull ${CORE_IMAGE}:$VERSION"$'\n' + BODY="${BODY}docker pull ${DASHBOARD_IMAGE}:$VERSION"$'\n' BODY="$BODY\`\`\`"$'\n' # Save to file (to handle multiline output) From fabd5225adc5724446e76f37fb3c4fed69a4c57a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 27 Feb 2026 05:27:39 +0000 Subject: [PATCH 2/2] Initial plan