From 0ae24cb66958a572023e119c6455a97dd2d5322f Mon Sep 17 00:00:00 2001 From: Joey de l'Arago Date: Tue, 20 Dec 2022 15:54:50 +0100 Subject: [PATCH] Update cura-installer.yml Use the same MacOS keychain password for both github actions. --- .github/workflows/cura-installer.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index 995e71060a..db80b0cf0d 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -151,6 +151,7 @@ jobs: if: ${{ runner.os == 'Macos' }} uses: apple-actions/import-codesign-certs@v1 with: + keychain-password: ${{ secrets.MACOS_KEYCHAIN_PASSWORD }} p12-file-base64: ${{ secrets.MACOS_CERT_P12 }} p12-password: ${{ secrets.MACOS_CERT_PASSPHRASE }} @@ -159,6 +160,7 @@ jobs: if: ${{ runner.os == 'Macos' }} uses: apple-actions/import-codesign-certs@v1 with: + keychain-password: ${{ secrets.MACOS_KEYCHAIN_PASSWORD }} create-keychain: false # keychain is created in previous use of action. p12-file-base64: ${{ secrets.MACOS_CERT_INSTALLER_P12 }} p12-password: ${{ secrets.MACOS_CERT_PASSPHRASE }}