From fa9206123af4e886ea8ddf3cfb80ae0b0ee76987 Mon Sep 17 00:00:00 2001 From: Charles Click Date: Mon, 7 Oct 2024 22:56:55 -0400 Subject: [PATCH] Maybe this time --- .woodpecker.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 6343a64..4aaaecc 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -53,7 +53,13 @@ steps: - status: [ failure ] commands: - apk add curl - - curl -H "Authorization: Bearer ${GOTIFY_TOKEN}" -H "Title: ${CI} - ${CI_REPO_NAME}" -H "Tag: warning" -H "Actions: http, Open Build, ${CI_PIPLINE_URL}, clear=true" -d "Failed to build docker images." gotify.vertinext.com/woodpecker + - >- + curl -H "Authorization: Bearer ${GOTIFY_TOKEN}" + -H "Title: ${CI} - ${CI_REPO_NAME}" + -H "Tag: warning" + -H "Actions: http, Open Build, ${CI_PIPLINE_URL}, clear=true" + -d "Failed to build docker images." + gotify.vertinext.com/woodpecker - name: notify-on-success image: alpine @@ -61,4 +67,10 @@ steps: - status: [ success ] commands: - apk add curl - - curl -H "Authorization: Bearer ${GOTIFY_TOKEN}" -H "Title: ${CI} - ${CI_REPO_NAME}" -H "Tag: package" -H "Actions: http, Open Build, ${CI_PIPLINE_URL}, clear=true" -d "Docker images rebuilt and pushed to the container repository." gotify.vertinext.com/woodpecker + - >- + curl -H "Authorization: Bearer ${GOTIFY_TOKEN}" + -H "Title: ${CI} - ${CI_REPO_NAME}" + -H "Tag: package" + -H "Actions: http, Open Build, ${CI_PIPLINE_URL}, clear=true" + -d "Docker images rebuilt and pushed to the container repository." + gotify.vertinext.com/woodpecker