Skip to content

Commit 55c0651

Browse files
committed
make sure jobs are actually using the right DB_TYPE
1 parent 6c05e88 commit 55c0651

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci-pipeline.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,10 @@ jobs:
108108
run: sleep 30
109109

110110
- name: Run embed job
111-
run: docker run --rm --network host test-image:${{ needs.build.outputs.image_tag }}
111+
run: |
112+
docker run --rm --network host \
113+
-e DB_TYPE=${{ matrix.db }} \
114+
test-image:${{ needs.build.outputs.image_tag }}
112115
113116
release:
114117
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)