mirror of
				https://github.com/Frooodle/Stirling-PDF.git
				synced 2025-11-01 01:21:18 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
pipeline {
 | 
						|
    agent any
 | 
						|
    stages {
 | 
						|
        stage('Build') {
 | 
						|
            steps {
 | 
						|
				sh 'chmod 755 gradlew'
 | 
						|
                sh './gradlew build'
 | 
						|
            }
 | 
						|
        }
 | 
						|
        stage('Docker Build') {
 | 
						|
            steps {
 | 
						|
                script {
 | 
						|
                    def appVersion = sh(returnStdout: true, script: './gradlew printVersion -q').trim()
 | 
						|
                    def image = "frooodle/s-pdf:$appVersion"
 | 
						|
                    sh "docker build -t $image ."
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
        stage('Docker Push') {
 | 
						|
            steps {
 | 
						|
                script {
 | 
						|
                    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 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"
 | 
						|
                    }
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |