Skip to content

Commit

Permalink
ci(workflow): fix workflow for release test
Browse files Browse the repository at this point in the history
  • Loading branch information
donch1989 committed Oct 27, 2023
1 parent 1770f3d commit 75001de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:

- name: remove existing docker container
run: |
docker rm -f $(docker ps -a -q)
docker rm -f $(docker ps -a -q) || true
- name: Set up environment
run: |
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:

- name: remove existing docker container
run: |
docker rm -f $(docker ps -a -q)
docker rm -f $(docker ps -a -q) || true
- name: Set up environment
run: |
Expand Down

0 comments on commit 75001de

Please sign in to comment.