From 2a65d79aeafd6770d46264e0574f9d59f074b0bc Mon Sep 17 00:00:00 2001 From: Tracewebstudio Dev Date: Tue, 14 Apr 2026 18:52:19 +0200 Subject: [PATCH] chore: remove gitops update step (handled server-side) --- .woodpecker.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index be2bfbc..702bc44 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -52,41 +52,6 @@ steps: platforms: linux/amd64 cache: false - - name: update-gitops - image: alpine/git:latest - environment: - GHCR_TOKEN: - from_secret: GHCR_TOKEN - GHCR_USERNAME: - from_secret: GHCR_USERNAME - GITOPS_REPO_URL: - from_secret: GITOPS_REPO_URL - commands: - - | - set -e - echo "Updating GitOps for ${SERVICE}" - git clone https://${GHCR_USERNAME}:${GHCR_TOKEN}@${GITOPS_REPO_URL} /tmp/gitops - cd /tmp/gitops - git checkout main - BACKEND_OVERLAY="apps/nxtgauge-backend-rust/overlays/prod" - if [ -f "${BACKEND_OVERLAY}/kustomization.yaml" ]; then - sed -i "s|image: registry.nxtgauge.com:5000/nxtgauge-rust-${SERVICE}:.*|image: registry.nxtgauge.com:5000/nxtgauge-rust-${SERVICE}:${CI_COMMIT_SHA}|" \ - ${BACKEND_OVERLAY}/kustomization.yaml - echo "Updated ${SERVICE} in ${BACKEND_OVERLAY}/kustomization.yaml" - fi - if ! git diff --quiet; then - git config user.name "Woodpecker CI" - git config user.email "woodpecker@nxtgauge.com" - git add -A - git commit -m "ci: update ${SERVICE} to ${CI_COMMIT_SHA:0:8}" - git push origin main - echo "Pushed GitOps update" - else - echo "No changes to push" - fi - when: - status: success - --- when: branch: [main, high-performance]