Compare commits

...

10 Commits
v1.0.1 ... 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
d85d9540ae Update version to 1.0.5 2024-03-31 14:12:58 +03:30
97bb5ae2c9 Update version to 1.0.4 2024-03-31 14:11:00 +03:30
8695daa255 Remove build stage 2024-03-31 14:09:49 +03:30
a23a062a83 Add git committer identity 2024-03-31 14:06:00 +03:30
8337911490 Add VERSION 2024-03-31 14:01:48 +03:30
0d88f7fa2d Update README 2024-03-31 13:55:43 +03:30
3 changed files with 31 additions and 5 deletions

34
Jenkinsfile vendored
View File

@ -1,16 +1,17 @@
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('Build') {
steps {
sh 'make build'
}
}
stage('Test') {
steps {
@ -20,6 +21,9 @@ pipeline {
stage('Release') {
steps {
sh 'git config --global user.email "rbehzadan@gmail.com"'
sh 'git config --global user.name "Reza Behzadan"'
sh 'git tag -a v$(cat VERSION) -m "v$(cat VERSION)"'
sh 'goreleaser release'
}
}
@ -31,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

@ -0,0 +1 @@
# go-hello-world2

1
VERSION Normal file
View File

@ -0,0 +1 @@
1.0.9