From f2b16b21e1c26462ed3c5a80df02e6a7d3078845 Mon Sep 17 00:00:00 2001 From: pande Date: Tue, 23 Sep 2025 17:09:30 +0800 Subject: [PATCH] fix: update orchestrator CI to download and set up doctl and orchestrating scripts --- .github/workflows/orchestratorci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/orchestratorci.yml b/.github/workflows/orchestratorci.yml index 8fa24d6..96d60b5 100644 --- a/.github/workflows/orchestratorci.yml +++ b/.github/workflows/orchestratorci.yml @@ -44,4 +44,11 @@ jobs: DO_TOKEN: ${{ secrets.DO_TOKEN }} SSH_PRIVATE_KEY_DECODED: ${{ secrets.SSH_PRIVATE_KEY_DECODED }} run: | - orchestrating \ No newline at end of file + wget https://github.com/digitalocean/doctl/releases/download/v1.141.0/doctl-1.141.0-linux-amd64.tar.gz + 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