diff --git a/checkout_repositories/action.yml b/checkout_repositories/action.yml index 782dacb..79b1cc1 100644 --- a/checkout_repositories/action.yml +++ b/checkout_repositories/action.yml @@ -28,7 +28,8 @@ runs: - name: Checkout BEC Plugin Repository shell: bash run: | - chmod +x run_ci.sh + echo " --- Current Directory: $(pwd) --- " + chmod +x ./run_ci.sh ./run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}" \ "${{ inputs.BEC_PLUGIN_REPO_BRANCH }}" \ "${{ inputs.BEC_CORE_BRANCH }}" \ diff --git a/install_apt_packages/action.yml b/install_apt_packages/action.yml index 4a2984d..dabe0fc 100644 --- a/install_apt_packages/action.yml +++ b/install_apt_packages/action.yml @@ -12,5 +12,5 @@ runs: - name: Install APT Packages shell: bash run: | - chmod +x run_ci.sh + chmod +x ./run_ci.sh ./run_ci.sh "${{ inputs.APT_PACKAGES }}" \ \ No newline at end of file diff --git a/install_python_env/action.yml b/install_python_env/action.yml index 5bbae24..16e108b 100644 --- a/install_python_env/action.yml +++ b/install_python_env/action.yml @@ -20,5 +20,5 @@ runs: - name: Install Python Environment shell: bash run: | - chmod +x run_ci.sh + chmod +x ./run_ci.sh ./run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}" diff --git a/run_pytest_for_plugin/action.yml b/run_pytest_for_plugin/action.yml index 1a772ad..0ee30ce 100644 --- a/run_pytest_for_plugin/action.yml +++ b/run_pytest_for_plugin/action.yml @@ -12,5 +12,5 @@ runs: - name: Run Pytest for Plugin shell: bash run: | - chmod +x run_ci.sh + chmod +x ./run_ci.sh ./run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}" \ No newline at end of file