From 529e8e82c87a13629c9b6734c9f8d97764f162d6 Mon Sep 17 00:00:00 2001 From: Martin Dimitrov Date: Sun, 8 Mar 2026 20:29:20 -0700 Subject: [PATCH] set gitainer url --- .gitea/workflows/gitainer-deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/gitainer-deploy.yaml b/.gitea/workflows/gitainer-deploy.yaml index 159f88d..1a8d363 100644 --- a/.gitea/workflows/gitainer-deploy.yaml +++ b/.gitea/workflows/gitainer-deploy.yaml @@ -37,7 +37,7 @@ jobs: if [ "${{ inputs.delayed_silent }}" = "true" ]; then echo "Delaying the webhook call by 10s using a detached container." echo "This gives the runner time to report job completion and clean up before it restarts." - docker run --rm -d alpine sh -c "apk add --no-cache curl && sleep 10 && curl --max-time ${{ inputs.webhook_timeout }} --request POST 'http://192.168.1.150:9080/api/stacks/${{ inputs.stack_name }}?pretty'" + docker run --rm -d alpine sh -c "apk add --no-cache curl && sleep 10 && curl --max-time ${{ inputs.webhook_timeout }} --request POST 'http://gitainer.local.chromart.cc/api/stacks/${{ inputs.stack_name }}?pretty'" else - curl --max-time ${{ inputs.webhook_timeout }} --request POST "http://192.168.1.150:9080/api/stacks/${{ inputs.stack_name }}?pretty" + curl --max-time ${{ inputs.webhook_timeout }} --request POST "http://gitainer.local.chromart.cc/api/stacks/${{ inputs.stack_name }}?pretty" fi