We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28807f2 commit 169965aCopy full SHA for 169965a
.github/workflows/run-docker-tests.yml
@@ -23,12 +23,13 @@ jobs:
23
password: ${{ secrets.GITHUB_TOKEN }}
24
25
- name: pull the image
26
- run: docker pull ${DOCKER_IMAGE_URL}
+ run: docker pull ${{ env.DOCKER_IMAGE_URL }}
27
28
- name: run the Docker tests
29
run: docker compose up mina-local-network
30
env:
31
- DOCKER_IMAGE_URL: ${DOCKER_IMAGE_URL}
+ DOCKER_IMAGE_URL: ${{ env.DOCKER_IMAGE_URL }}
32
+
33
34
- name: docker cp results
35
run: docker compose cp mina-local-network:/tmp/perf.data.tar.gz perf.data.tar.gz
0 commit comments