Fixes
This commit is contained in:
parent
86033d6028
commit
1073db05ee
@ -15,7 +15,7 @@ jobs:
|
|||||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||||
- name: Clean Up
|
- name: Clean Up
|
||||||
run: |
|
run: |
|
||||||
if ["docker ps -q|wc -l" -gt 0]; then
|
if [$(docker ps -q|wc -l) -gt 0]; then
|
||||||
docker ps -aq | xargs docker rm -f
|
docker ps -aq | xargs docker rm -f
|
||||||
fi
|
fi
|
||||||
docker system prune -af --volumes
|
docker system prune -af --volumes
|
||||||
@ -55,7 +55,7 @@ jobs:
|
|||||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||||
- name: Clean Up
|
- name: Clean Up
|
||||||
run: |
|
run: |
|
||||||
if ["docker ps -q|wc -l" -gt 0]; then
|
if [$(docker ps -q|wc -l) -gt 0]; then
|
||||||
docker ps -aq | xargs docker rm -f
|
docker ps -aq | xargs docker rm -f
|
||||||
fi
|
fi
|
||||||
docker system prune -af --volumes
|
docker system prune -af --volumes
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user