Skip to content

Commit d7acffe

Browse files
fix: docker-publish workflow failing on main due to inexisting ARCH env var (#431)
1 parent 2f482e8 commit d7acffe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/workflows/docker-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
- name: Test image
9191
run: |
9292
source .venv/bin/activate
93-
export DOCKER_IMAGE="$DOCKER_BUILD_REPOSITORY:$ARCH-$SHORT_SHA"
93+
export DOCKER_IMAGE="$DOCKER_BUILD_REPOSITORY:${{ matrix.arch }}-$SHORT_SHA"
9494
if [ "$DOCKER_PLATFORM" == "linux/arm64" ]; then
9595
SKIP_INFERENCE_TESTS=true make docker-test
9696
else

0 commit comments

Comments
 (0)