From af31aadc2585c2e65879472f545ac8ada7b64b5d Mon Sep 17 00:00:00 2001 From: Levi van Noort <73097785+levivannoort@users.noreply.github.com> Date: Fri, 3 Jul 2026 13:34:00 +0200 Subject: [PATCH] ci: write image tag to global.image.tag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The applications repo now sets the image once under `global.image` (generic chart 1.7.0 fallbacks); the bump writes the single canonical path `.global.image.tag` in default.yaml instead of per-alias keys. Merge AFTER appwrite-labs/assets-applications#29 — until then per-alias writes still override global, so deploys stay correct either way. Co-Authored-By: Claude Fable 5 --- .github/workflows/production.yml | 2 +- .github/workflows/staging.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index c880088..af41b41 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -76,7 +76,7 @@ jobs: token: ${{ steps.app-token.outputs.token }} - name: Update image tag - run: yq -i '.["mcp"].image.tag = strenv(TAG)' ${{ env.ENVIRONMENT }}/${{ env.PROJECT }}/default.yaml + run: yq -i '.global.image.tag = strenv(TAG)' ${{ env.ENVIRONMENT }}/${{ env.PROJECT }}/default.yaml - name: Commit and push run: | diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml index 6c06ebd..16b3125 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -77,7 +77,7 @@ jobs: token: ${{ steps.app-token.outputs.token }} - name: Update image tag - run: yq -i '.["mcp"].image.tag = strenv(TAG)' ${{ env.ENVIRONMENT }}/${{ env.PROJECT }}/default.yaml + run: yq -i '.global.image.tag = strenv(TAG)' ${{ env.ENVIRONMENT }}/${{ env.PROJECT }}/default.yaml - name: Commit and push run: |