diff --git a/Jenkinsfile b/Jenkinsfile index 4589d2c..e9fe11c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,6 @@ pipeline { agent none environment { SNAPCRAFT_STORE_CREDENTIALS = credentials('snapcraft-store-credentials') - registryCredential = credentials('docker-gitea-creds') } options { skipDefaultCheckout(true) @@ -15,7 +14,7 @@ pipeline { cleanWs() checkout scm script { - docker.withRegistry('https://git.dreamfall.space/thrrgilag', registryCredential) { + docker.withRegistry('https://git.dreamfall.space/thrrgilag', 'docker-gitea-creds') { def customImage = docker.build('git.dreamfall.space/thrrgilag/partybot:latest') customImage.push() }