Compare commits

...

2 Commits

Author SHA1 Message Date
273bdadc5e Store tarball
Some checks failed
Homelab/java-spring-microservice/pipeline/head There was a failure building this commit
2021-12-23 14:17:06 -08:00
b923b16fbc Stop pushing 2021-12-23 14:16:05 -08:00

4
Jenkinsfile vendored
View File

@ -41,11 +41,13 @@ podTemplate(label: label, containers: [
--insecure \ --insecure \
--skip-tls-verify \ --skip-tls-verify \
--cache=true \ --cache=true \
--destination=docker.home.thejimnicholson.com/servicedemo/servicedemo:${GIT_HASH} \
--tarPath ./target/servicedemo.image.tar" --tarPath ./target/servicedemo.image.tar"
} }
} }
stage('Archive') {
archiveArtifacts artifacts: 'target/*.tar', followSymlinks: false
}
} }
} }
} }