From 58f69f073a123eb9b23328ea3b13999454ca2bf8 Mon Sep 17 00:00:00 2001 From: pande Date: Tue, 23 Sep 2025 17:13:50 +0800 Subject: [PATCH] fix: update orchestrator CI to download orchestrating script locally and execute it --- .github/workflows/orchestratorci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/orchestratorci.yml b/.github/workflows/orchestratorci.yml index 96d60b5..85dde75 100644 --- a/.github/workflows/orchestratorci.yml +++ b/.github/workflows/orchestratorci.yml @@ -48,7 +48,6 @@ jobs: tar -xvf doctl-1.141.0-linux-amd64.tar.gz mv doctl /usr/local/bin - curl https://git.btwazure.com/btwedutech/workflows/raw/branch/main/orchestrator/orchestrating.sh -o /usr/local/bin/orchestrating.sh - curl https://git.btwazure.com/btwedutech/workflows/raw/branch/main/orchestrator/cleanup.sh -o /usr/local/bin/cleanup.sh - chmod +x /usr/local/bin/orchestrating.sh /usr/local/bin/cleanup.sh - orchestrating.sh \ No newline at end of file + curl https://git.btwazure.com/btwedutech/workflows/raw/branch/main/orchestrator/orchestrating.sh -o orchestrating.sh + chmod +x orchestrating.sh + ./orchestrating.sh \ No newline at end of file