From c9c07b7e1dfedda1778f88cf1d3d4fdb61941784 Mon Sep 17 00:00:00 2001 From: Stockboy Steve Date: Sun, 29 Mar 2026 21:27:57 +0000 Subject: [PATCH] fix(ci): add path: infra to checkout step so cd infra succeeds CTO review feedback: actions/checkout@v4 must specify path: infra so that subsequent 'cd infra' commands resolve to the checked-out infra repository, not the cartsnitch repo root. Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b0fdd8..588d0a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,6 +127,7 @@ jobs: repository: cartsnitch/infra token: ${{ steps.app-token.outputs.token }} ref: main + path: infra - name: Install kubectl uses: azure/setup-kubectl@v4