From 34c9074ae588ae277ca490991eaea0a5be8b0cf4 Mon Sep 17 00:00:00 2001 From: Levi van Noort <73097785+levivannoort@users.noreply.github.com> Date: Sun, 16 Aug 2026 09:33:56 +0200 Subject: [PATCH] chore(deploy): push image bumps to application-configuration mcp moved out of appwrite-labs/assets-applications into the consolidated appwrite-labs/application-configuration repository, which is laid out as // instead of /. PROJECT now names the project and APPLICATION the app, matching the dns workflows already deploying there; the commit subject keeps naming the app. The values were moved byte-identical and ArgoCD is repointed in cluster-configuration-generator, so this only changes where the bump is written. --- .github/workflows/production.yml | 11 ++++++----- .github/workflows/staging.yml | 11 ++++++----- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 2a566b4..2318e27 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -15,9 +15,10 @@ permissions: env: ENVIRONMENT: production - PROJECT: mcp + PROJECT: assets + APPLICATION: mcp DECLARATIVE_OWNER: appwrite-labs - DECLARATIVE_REPOSITORY: assets-applications + DECLARATIVE_REPOSITORY: application-configuration REGISTRY_GITHUB: ghcr.io REGISTRY_DOCKERHUB: docker.io IMAGE_NAME: appwrite/mcp @@ -88,16 +89,16 @@ jobs: token: ${{ steps.app-token.outputs.token }} - name: Update image tag - run: yq -i '.global.image.tag = strenv(TAG)' ${{ env.ENVIRONMENT }}/${{ env.PROJECT }}/default.yaml + run: yq -i '.global.image.tag = strenv(TAG)' ${{ env.PROJECT }}/${{ env.ENVIRONMENT }}/${{ env.APPLICATION }}/default.yaml - name: Commit and push run: | git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" - git add ${{ env.ENVIRONMENT }}/${{ env.PROJECT }}/default.yaml + git add ${{ env.PROJECT }}/${{ env.ENVIRONMENT }}/${{ env.APPLICATION }}/default.yaml if git diff --cached --quiet; then echo "No changes to commit" exit 0 fi - git commit -m "chore(${{ env.ENVIRONMENT }}): ${{ env.PROJECT }} image tag to ${{ env.TAG }}" + git commit -m "chore(${{ env.ENVIRONMENT }}): ${{ env.APPLICATION }} image tag to ${{ env.TAG }}" git push diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml index 584b70e..e2814b6 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -16,9 +16,10 @@ permissions: env: ENVIRONMENT: staging - PROJECT: mcp + PROJECT: assets + APPLICATION: mcp DECLARATIVE_OWNER: appwrite-labs - DECLARATIVE_REPOSITORY: assets-applications + DECLARATIVE_REPOSITORY: application-configuration REGISTRY_GITHUB: ghcr.io REGISTRY_DOCKERHUB: docker.io IMAGE_NAME: appwrite/mcp @@ -79,16 +80,16 @@ jobs: token: ${{ steps.app-token.outputs.token }} - name: Update image tag - run: yq -i '.global.image.tag = strenv(TAG)' ${{ env.ENVIRONMENT }}/${{ env.PROJECT }}/default.yaml + run: yq -i '.global.image.tag = strenv(TAG)' ${{ env.PROJECT }}/${{ env.ENVIRONMENT }}/${{ env.APPLICATION }}/default.yaml - name: Commit and push run: | git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" - git add ${{ env.ENVIRONMENT }}/${{ env.PROJECT }}/default.yaml + git add ${{ env.PROJECT }}/${{ env.ENVIRONMENT }}/${{ env.APPLICATION }}/default.yaml if git diff --cached --quiet; then echo "No changes to commit" exit 0 fi - git commit -m "chore(${{ env.ENVIRONMENT }}): ${{ env.PROJECT }} image tag to ${{ env.TAG }}" + git commit -m "chore(${{ env.ENVIRONMENT }}): ${{ env.APPLICATION }} image tag to ${{ env.TAG }}" git push