Skip to content

Commit 2f482e8

Browse files
fix: invalid env var setting in docker-publish workflow (#430)
bug introduced in previous PR causing build failure on main
1 parent 5b604b2 commit 2f482e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,9 @@ jobs:
8888
- name: Set up QEMU
8989
uses: docker/setup-qemu-action@v3
9090
- name: Test image
91-
env:
92-
DOCKER_IMAGE: "$DOCKER_BUILD_REPOSITORY:$ARCH-$SHORT_SHA"
9391
run: |
9492
source .venv/bin/activate
93+
export DOCKER_IMAGE="$DOCKER_BUILD_REPOSITORY:$ARCH-$SHORT_SHA"
9594
if [ "$DOCKER_PLATFORM" == "linux/arm64" ]; then
9695
SKIP_INFERENCE_TESTS=true make docker-test
9796
else

0 commit comments

Comments
 (0)