fix: add relative path

This commit is contained in:
2025-09-24 11:30:51 -05:00
parent d38966fc99
commit 7d2d8f0bbf
4 changed files with 5 additions and 4 deletions

View File

@@ -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 }}" \

View File

@@ -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 }}" \

View File

@@ -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 }}"

View File

@@ -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 }}"