0
1
Fork 0

Old code removed: Docker port, Jenkins config

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 {
stage('Checkout') {
steps {
configFileProvider([
configFile(fileId: "${PROJECT_NAME}.groovy",
variable: 'GROOVY_FILE')
]) {
load env.GROOVY_FILE
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'
@ -60,15 +64,6 @@ pipeline {
post {
always {
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
try {
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.

View File

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

View File

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