1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-08 06:45:32 +00:00

fix: Use correct path for alpine-base example in CI

Instead of changing directories, pass the path directly to krust.
This ensures the command runs from the correct working directory
where the krust binary is located.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jason Hall 2025-06-08 08:45:06 -04:00
parent 4522e79c81
commit d7a8533116
Failed to extract signature

View file

@ -221,8 +221,7 @@ jobs:
- name: Test multi-platform build with Alpine base
run: |
# Test that platform detection works (even if we can't build all platforms)
cd example/alpine-base
../target/release/krust build --no-push --image test.local/alpine-test:latest . 2>&1 | tee build.log
./target/release/krust build --no-push --image test.local/alpine-test:latest ./example/alpine-base 2>&1 | tee build.log
# Verify platform detection happened
grep -q "Detecting available platforms from base image: alpine:latest" build.log