From 208e62e19a9886ea8d6642e60b48f2188ea7a69c Mon Sep 17 00:00:00 2001 From: Mubelotix Date: Wed, 4 Dec 2024 10:33:59 +0100 Subject: [PATCH] Update deploy-webui.yml --- .github/workflows/deploy-webui.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-webui.yml b/.github/workflows/deploy-webui.yml index 92f3f1d..7b9a968 100644 --- a/.github/workflows/deploy-webui.yml +++ b/.github/workflows/deploy-webui.yml @@ -22,14 +22,14 @@ jobs: env: ANSIBLE_PASSWORD: ${{ secrets.ANSIBLE_PASSWORD }} run: | - response=$(curl -X POST -d "{\"auth\": \"ci\", \"password\": \"$ANSIBLE_PASSWORD\"}" -c cookies.txt -w "%{http_code}" -o /dev/null https://semaphore.mubelotix.xyz/api/auth/login) + response=$(curl -X POST -d "{\"auth\": \"ci\", \"password\": \"$ANSIBLE_PASSWORD\"}" -c cookies.txt -w "%{http_code}" -o /dev/null https://semaphore.mub.lol/api/auth/login) if [ "$response" -lt 200 ] || [ "$response" -ge 300 ]; then echo "Login to Semaphore failed with status code $response" exit 1 fi - name: Launch Task on Semaphore run: | - response=$(curl -X POST -b cookies.txt -d '{"template_id": 39}' -w "%{http_code}" -o /dev/null https://semaphore.mubelotix.xyz/api/project/3/tasks) + response=$(curl -X POST -b cookies.txt -d '{"template_id": 39}' -w "%{http_code}" -o /dev/null https://semaphore.mub.lol/api/project/3/tasks) if [ "$response" -lt 200 ] || [ "$response" -ge 300 ]; then echo "Launching Task on Semaphore failed with status code $response" exit 1