fix: adjust script path

This commit is contained in:
2025-09-24 11:42:42 -05:00
parent 2eb9739c73
commit 9e9696bb5c
4 changed files with 13 additions and 23 deletions

View File

@@ -13,11 +13,6 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/checkout@v4
with:
repository: bec/bec_shared_actions
ref: main
path: bec_shared_actions
- name: Setup Python
uses: actions/setup-python@v4
with:
@@ -25,5 +20,6 @@ runs:
- name: Install Python Environment
shell: bash
run: |
chmod +x ./install_python_env/run_ci.sh
./install_python_env/run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}"
SCRIPT_PATH="${{ github.action_path }}/run_ci.sh"
chmod +x "$SCRIPT_PATH"
"$SCRIPT_PATH" "${{ inputs.PLUGIN_REPO_NAME }}"