Compare commits

..

4 Commits
v1.0.5 ... main

Author SHA1 Message Date
10ef5379d1 Remove priority 2024-03-31 15:38:44 +03:30
bb35916fb2 Fix using NOTIFY_TOKEN env var 2024-03-31 15:36:14 +03:30
61c39daf55 Remove step: post always 2024-03-31 15:30:07 +03:30
1a7cc49f35 Add notifications 2024-03-31 15:27:02 +03:30
2 changed files with 27 additions and 1 deletions

26
Jenkinsfile vendored
View File

@ -1,10 +1,16 @@
pipeline {
agent {
docker { image 'rbehzadan/golang_goreleaser:1.22.1-1.24.0' }
}
environment {
GITEA_TOKEN = credentials('git.behzadan.ir')
NOTIFY_TOKEN = credentials('notify_events_sinic_alert')
}
stages {
stage('Test') {
@ -29,4 +35,24 @@ pipeline {
}
}
post {
success {
echo 'Build succeeded!'
notifyEvents title: 'jenkins.home.behzadan.ir/$JOB_NAME/$BUILD_ID',
message: 'Build succeeded!',
token: "${env.NOTIFY_TOKEN}"
}
failure {
echo 'Build failed!'
notifyEvents title: 'jenkins.home.behzadan.ir/$JOB_NAME/$BUILD_ID',
message: 'Build failed!',
token: "${env.NOTIFY_TOKEN}"
}
}
}

View File

@ -1 +1 @@
1.0.5
1.0.9