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

@@ -34,8 +34,10 @@ runs:
shell: bash
run: |
echo " --- Current Directory: $(pwd) --- "
chmod +x ./checkout_repositories/run_ci.sh
./checkout_repositories/run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}" \
SCRIPT_PATH="${{ github.action_path }}/run_ci.sh"
echo " --- Script Path: $SCRIPT_PATH --- "
chmod +x "$SCRIPT_PATH"
"$SCRIPT_PATH" "${{ inputs.PLUGIN_REPO_NAME }}" \
"${{ inputs.BEC_PLUGIN_REPO_BRANCH }}" \
"${{ inputs.BEC_CORE_BRANCH }}" \
"${{ inputs.BEC_WIDGETS_BRANCH }}" \