Skip to content

Commit 9c2b3e3

Browse files
committed
Trying to solve issues with docker hub.
1 parent 7ba0823 commit 9c2b3e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/docker-hub.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ jobs:
8686
cat <<EOF > Dockerfile.test
8787
FROM metacall/${IMAGE_NAME}:cli-${platform_tag}
8888
RUN echo "console.log('0123456789abcdef')" > script.js
89-
RUN metacallcli script.js
89+
RUN metacallcli script.js | tee output.txt
90+
RUN grep 0123456789abcdef output.txt
9091
EOF
9192
9293
export DOCKER_BUILDKIT=1
93-
docker build --progress=plain --platform ${{ matrix.platform }} -f Dockerfile.test -t test-image . | tee output.txt
94-
grep "0123456789abcdef" output.txt
94+
docker build --progress=plain --platform ${{ matrix.platform }} -f Dockerfile.test -t test-image .
9595
9696
- name: Push Platform Images
9797
# Only run when master or when tagging a version

0 commit comments

Comments
 (0)