From b7f587f5dcae631b76d2f80ed2a3b9a207972d80 Mon Sep 17 00:00:00 2001 From: Christopher Angelo Phillips <32073428+spiffcs@users.noreply.github.com> Date: Tue, 2 Aug 2022 09:42:12 -0400 Subject: [PATCH] remove docker login from keychain (#1135) --- .github/scripts/apple-signing/setup-prod.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/scripts/apple-signing/setup-prod.sh b/.github/scripts/apple-signing/setup-prod.sh index 0048a1a6f4c..8a9c2853945 100755 --- a/.github/scripts/apple-signing/setup-prod.sh +++ b/.github/scripts/apple-signing/setup-prod.sh @@ -29,8 +29,4 @@ setup_signing() { # Make this new keychain the user's default keychain, so that codesign will be able to find this certificate when we specify it during signing. security default-keychain -d "user" -s "${KEYCHAIN_PATH}" - - commentary "log into docker -- required for publishing (since the default keychain has now been replaced)" - echo "${DOCKER_PASSWORD}" | docker login docker.io -u "${DOCKER_USERNAME}" --password-stdin - echo "${GHCR_PASSWORD}" | docker login ghcr.io -u "${GHCR_USERNAME}" --password-stdin }