From 9a8da3e6fee25f46457bc0d92d38d191420fa835 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Wed, 7 May 2025 10:28:32 +0200 Subject: [PATCH] backend: Refactor cleanup action to move OpenVidu Meet directory removal step --- .github/actions/cleanup/action.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/cleanup/action.yaml b/.github/actions/cleanup/action.yaml index 417a2f0..cdcb93a 100644 --- a/.github/actions/cleanup/action.yaml +++ b/.github/actions/cleanup/action.yaml @@ -29,16 +29,16 @@ runs: ps aux | grep -i 'npm\|node\|livekit' | grep -v grep | awk '{print $2}' | xargs kill -9 || true shell: bash + - name: Remove OpenVidu Meet directory + run: | + if [ -d "/__w/openvidu-meet/openvidu-meet" ]; then + sudo rm -rf /__w/openvidu-meet/openvidu-meet + fi + shell: bash - name: Show system status run: | echo "=== System status after cleanup ===" df -h free -h docker ps -a - shell: bash - - name: Remove OpenVidu Meet directory - run: | - if [ -d "/__w/openvidu-meet/openvidu-meet" ]; then - sudo rm -rf /__w/openvidu-meet/openvidu-meet - fi shell: bash \ No newline at end of file