From acba947a9fe5b398ccca5837d74780c9bdcd5202 Mon Sep 17 00:00:00 2001 From: "ALI Mohammadiyeh (Max Base)" Date: Fri, 10 Jan 2025 21:35:07 +0100 Subject: [PATCH] run-sync-script.yaml - fix path to fix the error --- .github/workflows/run-sync-script.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-sync-script.yaml b/.github/workflows/run-sync-script.yaml index 92e176d2..69fd3c8a 100644 --- a/.github/workflows/run-sync-script.yaml +++ b/.github/workflows/run-sync-script.yaml @@ -18,7 +18,7 @@ jobs: python-version: '3.x' - name: Install Python dependencies run: | - cd config + cd config/yaml if [ -f requirements.txt ]; then cat requirements.txt @@ -26,7 +26,7 @@ jobs: fi - name: Run sync.py script run: | - cd config + cd config/yaml python3 sync.py - name: Check for changes id: check_changes