Fix discord webhook credential

This commit is contained in:
Jared 2022-04-04 22:09:20 +02:00
parent 36037206d3
commit a4a9f21602
No known key found for this signature in database
GPG key ID: DB3BA3B9088A1BDF

5
Jenkinsfile vendored
View file

@ -5,9 +5,8 @@ pipeline {
tools { tools {
jdk "jdk-17.0.1" jdk "jdk-17.0.1"
} }
environment { environment {
discordWebhook = credentials('discord_webhook') discordWebhook = credentials('discordWebhook')
} }
stages { stages {
stage('Clean') { stage('Clean') {
@ -32,7 +31,7 @@ pipeline {
} }
post { post {
always { always {
archive 'build/libs/**.jar' archiveArtifacts 'build/libs/**.jar'
} }
} }
} }