fix(ci): make run_e2e.sh executable; invoke via bash in workflow

First dispatch (run 10535) failed instantly with Permission denied on the
orchestrator: the file lost its executable bit in the branch move. Set mode
100755 and call through bash so a future mode regression cannot break the job.
This commit is contained in:
2026-09-07 21:30:01 -07:00
parent 4485ec3814
commit 58b18d6260
2 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ jobs:
export MESHTASTICATOR_DIR="$HOME/meshtasticator"
export SIM_VENV="$HOME/sim-venv"
export E2E_VENV="plugin/.venv-contract"
scripts/meshtasticator_e2e/run_e2e.sh --mode docker
bash scripts/meshtasticator_e2e/run_e2e.sh --mode docker
- name: Print simulator log (on failure)
if: failure()