Old code removed: Docker port, Jenkins config
gitea/hedera-web/master This commit looks good Details

This commit is contained in:
Juan Ferrer 2020-01-29 14:02:50 +01:00
parent 6322c44e14
commit 4863ff83ba
4 changed files with 12 additions and 17 deletions

23
Jenkinsfile vendored
View File

@ -8,11 +8,15 @@ pipeline {
stages { stages {
stage('Checkout') { stage('Checkout') {
steps { steps {
configFileProvider([ script {
configFile(fileId: "${PROJECT_NAME}.groovy", if (!env.GIT_COMMITTER_EMAIL) {
variable: 'GROOVY_FILE') env.COMMITTER_EMAIL = sh(
]) { script: 'git --no-pager show -s --format="%ae"',
load env.GROOVY_FILE returnStdout: true
).trim()
} else {
env.COMMITTER_EMAIL = env.GIT_COMMITTER_EMAIL;
}
} }
sh 'printenv' sh 'printenv'
@ -60,15 +64,6 @@ pipeline {
post { post {
always { always {
script { 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;
}
if (!env.COMMITTER_EMAIL) return if (!env.COMMITTER_EMAIL) return
try { try {
mail( mail(

2
debian/changelog vendored
View File

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

View File

@ -6,7 +6,7 @@ services:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
ports: ports:
- ${PORT:?}:80 - 80
configs: configs:
- source: config - source: config
target: /etc/hedera-web/config.my.php target: /etc/hedera-web/config.my.php

View File

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