More Reliable Jenkins

This commit is contained in:
TheBrokenRail 2022-06-25 23:40:24 -04:00
parent 905a569c09
commit a94708a1ae
1 changed files with 2 additions and 0 deletions

2
Jenkinsfile vendored
View File

@ -22,6 +22,8 @@ pipeline {
stage('Publish') {
steps {
sh 'apt-get update && apt-get install -y docker.io'
sh 'rm -rf ./out/server-amd64'
sh './scripts/build.sh server amd64'
sh 'docker build --no-cache --tag thebrokenrail/minecraft-pi-reborn-server .'
withCredentials([usernamePassword(credentialsId: 'docker_hub_login', usernameVariable: 'DOCKER_HUB_USERNAME', passwordVariable: 'DOCKER_HUB_PASSWORD')]) {
sh 'docker login -u "${DOCKER_HUB_USERNAME}" -p "${DOCKER_HUB_PASSWORD}"'