Skip to content

Commit

Permalink
add step for remove all containers
Browse files Browse the repository at this point in the history
  • Loading branch information
BuddyGlas committed Dec 5, 2024
1 parent ac6da24 commit 5ccdc01
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main-process-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:
if: ${{ !cancelled() && steps.bdk.outcome == 'success' }}
run: |
yarn
yarn install
yarn install
../scripts/wait_for_first_block.sh
env:
RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}
Expand Down Expand Up @@ -271,6 +271,11 @@ jobs:
env:
RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}

- name: Remove all containers
if: always() # run this step always
run: |
docker ps -aq | xargs docker rm -f
- name: Remove builder cache
if: always() # run this step always
run: |
Expand Down

0 comments on commit 5ccdc01

Please sign in to comment.