mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-29 18:33:05 +00:00
dont fail docker if nothing to delete
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
parent
2bf576ea8a
commit
53858a32f1
1 changed files with 2 additions and 2 deletions
|
@ -27,8 +27,8 @@ jobs:
|
|||
- name: Clean up Docker
|
||||
if: steps.changed-files.outputs.any_changed == 'true'
|
||||
run: |
|
||||
docker kill $(docker ps -q)
|
||||
docker network prune -f
|
||||
docker kill $(docker ps -q) || true
|
||||
docker network prune -f || true
|
||||
|
||||
- name: Run general integration tests
|
||||
if: steps.changed-files.outputs.any_changed == 'true'
|
||||
|
|
Loading…
Reference in a new issue