From dc2bf90bbdd6cd0d6f32ef42aabb1a5ceca92860 Mon Sep 17 00:00:00 2001 From: Long0x0 <1870779875@qq.com> Date: Thu, 6 May 2021 23:09:18 +0800 Subject: [PATCH] fix path error --- action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 8430c22..47d0d03 100644 --- a/action.yml +++ b/action.yml @@ -22,6 +22,7 @@ runs: using: "composite" steps: - run: | - pip install -r ${{ github.action_path }}/requirements.txt - python ${{ github.action_path }}/test.py + ls + pip install -r ${{ github.action_path }}/src/requirements.txt + python ${{ github.action_path }}/src/test.py shell: bash \ No newline at end of file