get gitea json object
Some checks failed
InnoHub Processor/tatort/pipeline/head There was a failure building this commit

This commit is contained in:
2025-07-01 12:54:25 +02:00
parent 45644c9695
commit 32d6245b5a

6
Jenkinsfile vendored
View File

@@ -42,9 +42,7 @@ pipeline {
} }
} }
} }
}
stages {
stage('Install Dependencies') { stage('Install Dependencies') {
steps { steps {
script { script {
@@ -70,7 +68,7 @@ pipeline {
didRun = true didRun = true
def tag = "innohub/tatort-dev:0.${env.BUILD_ID}" def tag = "innohub/tatort-dev:0.${env.BUILD_ID}"
docker.withRegistry('https://gitea.innovation-hub-niedersachsen.de', 'JenkinsGitea') { docker.withRegistry('https://gitea.innovation-hub-niedersachsen.de', 'JenkinsGitea') {
docker.build(tag, '-f Dockerfile.dev .').push() docker.build(tag, '-f Dockerfile.dev .').push('latest')
} }
} }
} }