diff --git a/.gitea/workflows/run_tests.yaml b/.gitea/workflows/run_tests.yaml index faaee403d..aad1777bd 100644 --- a/.gitea/workflows/run_tests.yaml +++ b/.gitea/workflows/run_tests.yaml @@ -15,7 +15,8 @@ jobs: - run: echo "🖥️ The workflow is now ready to test your code on the runner." - name: Clean Up run: | - docker container stop 1 $(docker container ls -aq) && docker system prune -af --volumes + docker ps -aq | xargs docker rm -f + docker system prune -af --volumes - name: Init run: | make make-init ENVS="ENV=ci TAG=latest" @@ -52,7 +53,8 @@ jobs: - run: echo "🖥️ The workflow is now ready to test your code on the runner." - name: Clean Up run: | - docker container stop 1 $(docker container ls -aq) && docker system prune -af --volumes + docker ps -aq | xargs docker rm -f + docker system prune -af --volumes - name: Init run: | make make-init ENVS="ENV=ci TAG=latest"