1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-06-30 14:40:10 +02:00

ci: add helm package/push to Jenkinsfile

Signed-off-by: Daniel Richter <danielrichter@posteo.de>
This commit is contained in:
Daniel Richter 2023-11-12 22:31:35 +01:00
parent 9d052b310f
commit d3fe467f6f
No known key found for this signature in database
GPG Key ID: 9911E0D935135C08
2 changed files with 17 additions and 5 deletions

20
Jenkinsfile vendored
View File

@ -22,12 +22,24 @@ pipeline {
def appVersion = sh(returnStdout: true, script: './gradlew printVersion -q').trim()
def image = "frooodle/s-pdf:$appVersion"
withCredentials([string(credentialsId: 'docker_hub_access_token', variable: 'DOCKER_HUB_ACCESS_TOKEN')]) {
sh "docker login --username frooodle --password $DOCKER_HUB_ACCESS_TOKEN"
sh "docker login --username frooodle --password $DOCKER_HUB_ACCESS_TOKEN"
sh "docker push $image"
}
}
}
}
}
}
stage('Helm Push') {
steps {
script {
//TODO: Read chartVersion from Chart.yaml
def chartVersion = '1.0.0'
withCredentials([string(credentialsId: 'docker_hub_access_token', variable: 'DOCKER_HUB_ACCESS_TOKEN')]) {
sh "docker login --username frooodle --password $DOCKER_HUB_ACCESS_TOKEN"
sh "helm package chart/stirling-pdf"
sh "helm push stirling-pdf-chart-1.0.0.tgz oci://registry-1.docker.io/frooodle"
}
}
}
}
}
}

View File

@ -9,7 +9,7 @@ keywords:
maintainers:
- name: Frooodle
url: https://github.com/Frooodle/Stirling-PDF
name: stirling-pdf
name: stirling-pdf-chart
sources:
- https://github.com/Frooodle/Stirling-PDF
version: 1.0.0