Skip to content

Commit

Permalink
fixing github action script
Browse files Browse the repository at this point in the history
  • Loading branch information
drmarro committed Feb 7, 2024
1 parent 0b0b9c3 commit 82aa92b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/code-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jobs:
- name: Stop containers if up
run: |
docker-compose -f "__integrations__/docker-compose.yml" stop
docker-compose -f "__integrations__/docker-compose.yml" down
docker-compose --env-file "__integrations__/environments/.env" -f "__integrations__/docker-compose.yml" stop
docker-compose --env-file "__integrations__/environments/.env" -f "__integrations__/docker-compose.yml" down
- name: Start containers
run: docker-compose --env-file "__integrations__/environments/.env" -f "__integrations__/docker-compose.yml" up -d
Expand All @@ -72,5 +72,5 @@ jobs:
- name: Stop containers
run: |
docker-compose -f "docker-compose.yml" stop
docker-compose -f "docker-compose.yml" down
docker-compose --env-file "environments/.env" -f "docker-compose.yml" stop
docker-compose --env-file "environments/.env" -f "docker-compose.yml" down

0 comments on commit 82aa92b

Please sign in to comment.