diff --git a/run_python_script.yml b/run_python_script.yml index 6d94769..0de4a67 100644 --- a/run_python_script.yml +++ b/run_python_script.yml @@ -5,10 +5,10 @@ - name: Ensure required Python packages are installed pip: - requirements: /Users/vadimshulkin/playbooks/requirements.txt # Ensure dependencies are installed + requirements: requirements.txt - name: Run the Python script - command: python3 /Users/vadimshulkin/playbooks/scripts/my_script.py + command: python3 scripts/my_script.py register: script_output - name: Show script output