We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ba0823 commit 9c2b3e3Copy full SHA for 9c2b3e3
.github/workflows/docker-hub.yml
@@ -86,12 +86,12 @@ jobs:
86
cat <<EOF > Dockerfile.test
87
FROM metacall/${IMAGE_NAME}:cli-${platform_tag}
88
RUN echo "console.log('0123456789abcdef')" > script.js
89
- RUN metacallcli script.js
+ RUN metacallcli script.js | tee output.txt
90
+ RUN grep 0123456789abcdef output.txt
91
EOF
92
93
export DOCKER_BUILDKIT=1
- docker build --progress=plain --platform ${{ matrix.platform }} -f Dockerfile.test -t test-image . | tee output.txt
94
- grep "0123456789abcdef" output.txt
+ docker build --progress=plain --platform ${{ matrix.platform }} -f Dockerfile.test -t test-image .
95
96
- name: Push Platform Images
97
# Only run when master or when tagging a version
0 commit comments