Jenkins fixes
gitea/hedera-web/pipeline/head This commit looks good Details

This commit is contained in:
Juan Ferrer 2021-04-30 00:20:36 +02:00
parent a014a40a12
commit 52e295a393
3 changed files with 4 additions and 26 deletions

26
Jenkinsfile vendored
View File

@ -8,18 +8,7 @@ pipeline {
stages {
stage('Checkout') {
steps {
script {
if (!env.GIT_COMMITTER_EMAIL) {
env.COMMITTER_EMAIL = sh(
script: 'git --no-pager show -s --format="%ae"',
returnStdout: true
).trim()
} else {
env.COMMITTER_EMAIL = env.GIT_COMMITTER_EMAIL;
}
}
sh 'printenv'
setEnv()
}
}
stage('Package') {
@ -66,18 +55,7 @@ pipeline {
}
post {
always {
script {
if (!env.COMMITTER_EMAIL) return
try {
mail(
to: env.COMMITTER_EMAIL,
subject: "Pipeline: ${env.JOB_NAME} (${env.BUILD_NUMBER}): ${currentBuild.currentResult}",
body: "Check status at ${env.BUILD_URL}"
)
} catch (e) {
echo e.toString()
}
}
sendEmail()
}
}
}

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (1.407.51) stable; urgency=low
hedera-web (1.407.52) stable; urgency=low
* Initial Release.

View File

@ -1,6 +1,6 @@
{
"name": "hedera-web",
"version": "1.407.51",
"version": "1.407.52",
"description": "Verdnatura web page",
"license": "GPL-3.0",
"repository": {