From 3352f2afa76a5a6372cc9e2df0bccd5023c4875f Mon Sep 17 00:00:00 2001 From: CatChow0 Date: Wed, 8 Oct 2025 17:28:14 +0200 Subject: [PATCH] Jenkins Test #7 --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 37d273d..7f4bf03 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -85,18 +85,18 @@ pipeline { def debugUrl = "${env.BUILD_URL}artifact/builds/KhaoticEngineReborn_Debug.zip" def releaseUrl = "${env.BUILD_URL}artifact/builds/KhaoticEngineReborn_Release.zip" bat """ - curl -X POST http://localhost:2500/ci-notify ^ + curl -X POST http://host.docker.internal:2500/ci-notify ^ -H "Content-Type: application/json" ^ - -d "{\\"userId\\": \\"VOTRE_USER_ID_DISCORD\\",\\"status\\": \\"success\\",\\"urls\\":[\\"${debugUrl}\\",\\"${releaseUrl}\\"]}" + -d "{\\"userId\\": \\"378262266723696651\\",\\"status\\": \\"success\\",\\"urls\\":[\\"${debugUrl}\\",\\"${releaseUrl}\\"]}" """ } } failure { script { bat """ - curl -X POST http://localhost:2500/ci-notify ^ + curl -X POST http://host.docker.internal:2500/ci-notify ^ -H "Content-Type: application/json" ^ - -d "{\\"userId\\": \\"VOTRE_USER_ID_DISCORD\\",\\"status\\": \\"failure\\",\\"urls\\":[]}" + -d "{\\"userId\\": \\"378262266723696651\\",\\"status\\": \\"failure\\",\\"urls\\":[]}" """ } }