From f06abe7abb53ee02511da12fb5344a81df2b6b65 Mon Sep 17 00:00:00 2001 From: Laci Dusa Date: Thu, 4 Dec 2025 23:42:03 +0100 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 16da1f0..c2d2c37 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -54,7 +54,7 @@ notify: script: - column=':' - echo "${flow_id}" - - curl -XPOST http://192.168.77.101:8123/api/webhook/voice-notifications-tC_8YKxMJIAaQRV5riKuC7Zl -d {"message"${column} "build job completed"} + - curl -XPOST http://192.168.77.101:8123/api/webhook/voice-notifications-tC_8YKxMJIAaQRV5riKuC7Zl --data-raw 'message=build job completed' notify2: stage: notify # Should be in a later stage than the job that might fail @@ -62,7 +62,7 @@ notify2: script: - column=':' - echo "${flow_id}" - - curl -XPOST http://192.168.77.101:8123/api/webhook/voice-notifications-tC_8YKxMJIAaQRV5riKuC7Zl -d {"message"${column} "build job failed"} + - curl -XPOST http://192.168.77.101:8123/api/webhook/voice-notifications-tC_8YKxMJIAaQRV5riKuC7Zl --data-raw 'message=build job failed' rules: - if: '$CI_COMMIT_MESSAGE =~ /build/' \ No newline at end of file