From 0eccb60034f58006bc93347f46b1e05d62e9a038 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-for-docs 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 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index e774094..e549c47 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -16,9 +16,10 @@ concurrency: env: ENVIRONMENT: production - PROJECT: mcp-for-docs + PROJECT: assets + APPLICATION: mcp-for-docs DECLARATIVE_OWNER: appwrite-labs - DECLARATIVE_REPOSITORY: assets-applications + DECLARATIVE_REPOSITORY: application-configuration REGISTRY_GITHUB: ghcr.io IMAGE_NAME: appwrite/mcp-for-docs TAG: ${{ github.event.release.tag_name || inputs.tag }} @@ -68,16 +69,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" else - git commit -m "chore(${ENVIRONMENT}): ${PROJECT} image tag to ${TAG}" + git commit -m "chore(${ENVIRONMENT}): ${APPLICATION} image tag to ${TAG}" git push fi