Skip to content

Commit 7dc2e23

Browse files
authored
Merge pull request #1504 from RS-PYTHON/fix/dont-run-all-images-in-cicd
Don't use all docker services in the ci/cd
2 parents 7ae3200 + 61dbbcf commit 7dc2e23

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/publish-binaries.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,8 +567,9 @@ jobs:
567567
docker_tag="${{ needs.set-env.outputs.docker_tag }}"
568568
docker_tag="${docker_tag:-latest}" # latest by default
569569
./test-docker-tag.sh "$docker_tag"
570-
docker compose -f docker-compose-test-tag.yml up -d
571-
./run-notebooks.sh "$docker_tag"
570+
docker compose -f docker-compose-test-tag.yml up cicd -d
571+
./run-notebooks.sh
572+
docker compose down -v
572573
573574
shell: bash
574575

0 commit comments

Comments
 (0)