From 6048cadc3cd2bb657562fb4d2f0f03cef08b8361 Mon Sep 17 00:00:00 2001 From: Levi van Noort <73097785+levivannoort@users.noreply.github.com> Date: Fri, 3 Jul 2026 13:33:51 +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 f36eda653b..1aa5c12947 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -86,7 +86,7 @@ jobs: token: ${{ steps.app-token.outputs.token }} - name: Update image tag - run: yq -i '.website.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 3736ba9d14..9a6ba173d2 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -89,7 +89,7 @@ jobs: token: ${{ steps.app-token.outputs.token }} - name: Update image tag - run: yq -i '.website.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: |