We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a130ab commit 3a52204Copy full SHA for 3a52204
1 file changed
.github/workflows/build.yml
@@ -49,6 +49,9 @@ jobs:
49
runs-on: ubuntu-latest
50
needs:
51
- build
52
+ env:
53
+ COMPOSE_FILE: docker-compose.yml:docker-compose.ci.yml
54
+ DOCKER_APP_IMAGE: ${{ needs.build.outputs.build-image }}
55
steps:
56
- name: Checkout code
57
uses: actions/checkout@v4
@@ -77,9 +80,6 @@ jobs:
77
80
78
81
- name: Run the tests
79
82
run: bin/test | tee "${ARTIFACTS_DIR}/test.out"
- env:
- COMPOSE_FILE: docker-compose.yml:docker-compose.ci.yml
- DOCKER_APP_IMAGE: ${{ needs.build.outputs.build-image }}
83
84
- name: Collect additional artifacts
85
if: ${{ always() }}
0 commit comments