From a4a9f2160255056c14a69218200709e89d8610c1 Mon Sep 17 00:00:00 2001 From: Jared Date: Mon, 4 Apr 2022 22:09:20 +0200 Subject: [PATCH] Fix discord webhook credential --- Jenkinsfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index acf1c2b6..e28ba668 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,9 +5,8 @@ pipeline { tools { jdk "jdk-17.0.1" } - environment { - discordWebhook = credentials('discord_webhook') + discordWebhook = credentials('discordWebhook') } stages { stage('Clean') { @@ -32,7 +31,7 @@ pipeline { } post { always { - archive 'build/libs/**.jar' + archiveArtifacts 'build/libs/**.jar' } } } \ No newline at end of file