Fix discord webhook credential
This commit is contained in:
parent
36037206d3
commit
a4a9f21602
1 changed files with 2 additions and 3 deletions
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
|
@ -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'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue