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.
This commit is contained in:
Wikid82
2025-11-28 13:52:19 +00:00
parent 2d68bc2d2d
commit d96ff80f57

View File

@@ -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 }}"