From 275f2f29640ae13212db0b8426d6f61ff88f3f1d Mon Sep 17 00:00:00 2001 From: Ryan Moon Date: Fri, 3 Apr 2026 15:32:14 -0500 Subject: [PATCH] chore: remove manual chart update step --- .gitea/workflows/build.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 65ac057..6c17058 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -79,20 +79,6 @@ jobs: git pull --rebase origin main git push origin main - - name: Update charts - run: | - mkdir -p ~/.ssh - echo "${{ secrets.CHARTS_DEPLOY_KEY }}" > ~/.ssh/charts_deploy_key - chmod 600 ~/.ssh/charts_deploy_key - echo "StrictHostKeyChecking no" >> ~/.ssh/config - GIT_SSH_COMMAND="ssh -i ~/.ssh/charts_deploy_key" git clone ssh://git@git-ssh.lunarfront.tech/ryan/lunarfront-charts.git /tmp/charts - cd /tmp/charts - sed -i "s|image: registry.digitalocean.com/lunarfront/manager:.*|image: registry.digitalocean.com/lunarfront/manager:${{ steps.version.outputs.version }}|" manager/deployment.yaml - git config user.name "lunarfront-bot" - git config user.email "bot@lunarfront.tech" - git add manager/deployment.yaml - git commit -m "chore: update manager image to v${{ steps.version.outputs.version }}" - GIT_SSH_COMMAND="ssh -i ~/.ssh/charts_deploy_key" git push origin main - name: Logout if: always()