Commit 6da50490 authored by Ian Baum's avatar Ian Baum

Update stop_review job to handle script located in a subdirectory

* stop_review can't use the single-script-job scripts since the script
it needs is stored in a subdirectory of scripts
parent 9b5e7122
......@@ -1157,7 +1157,10 @@ stop_review:
dependencies: []
before_script: []
script:
- source ./scripts/review_apps/review-apps.sh
- export SCRIPT_NAME="review-apps.sh"
- wget "${CI_PROJECT_URL}/raw/${CI_COMMIT_SHA}/scripts/review_apps/${SCRIPT_NAME}"
- chmod 755 "${SCRIPT_NAME}"
- source "${SCRIPT_NAME}"
- delete
- cleanup
when: manual
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment