From d96ff80f579040f3ee38559d3d617fe1ae7ab52b Mon Sep 17 00:00:00 2001 From: Wikid82 Date: Fri, 28 Nov 2025 13:52:19 +0000 Subject: [PATCH] fix: add missing checkout step in test-image job The test-image job was trying to run ./scripts/integration-test.sh without first checking out the repository, causing CI failures. --- .github/workflows/docker-publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index ea51d1fe..0fe949b2 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -180,6 +180,9 @@ jobs: if: needs.build-and-push.outputs.skip_build != 'true' && github.event_name != 'pull_request' steps: + - name: Checkout repository + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + - name: Normalize image name run: | raw="${{ github.repository_owner }}/${{ github.event.repository.name }}"