From ca48c2e8d8d26948d1350108f300e75fa2ce2769 Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Tue, 29 Nov 2022 22:33:58 -0800 Subject: [PATCH] fix docker credentials again --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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() }