From 4bc657950dc6ccf291c9bd69f4c5f6e7fc8a0dd5 Mon Sep 17 00:00:00 2001 From: Christian Korneck Date: Wed, 5 Jan 2022 11:48:45 +0100 Subject: [PATCH] temp remove of Apple codesigning as cert needs renewal --- .github/workflows/release.yml | 67 ++++++++++++++++++----------------- 1 file changed, 34 insertions(+), 33 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9aa666a..ae0a03a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -153,24 +153,25 @@ jobs: if: ${{ matrix.no_upx != true }} run: sudo apt-get -y update && sudo apt-get -y install upx && upx ./getignore${{ matrix.file_extension }} - - name: Import darwin code-signing certificates - if: ${{ matrix.os == 'darwin' }} - uses: Apple-Actions/import-codesign-certs@v1 - with: - p12-file-base64: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_P12_BASE64 }} #dev id cert as b64 - p12-password: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_PASSWORD }} #pw for cert + # 20220105: temp remove of Apple codesigning as cert needs renewal + # - name: Import darwin code-signing certificates + # if: ${{ matrix.os == 'darwin' }} + # uses: Apple-Actions/import-codesign-certs@v1 + # with: + # p12-file-base64: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_P12_BASE64 }} #dev id cert as b64 + # p12-password: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_PASSWORD }} #pw for cert - - name: Sign darwin binary with Gon - if: ${{ matrix.os == 'darwin' }} - env: - AC_USERNAME: ${{ secrets.AC_USERNAME }} #apple id - AC_PASSWORD: ${{ secrets.AC_PASSWORD }} #app specific pw for apple id - run: | - brew tap mitchellh/gon - brew install mitchellh/gon/gon - gon -log-level=debug -log-json ./gon.json - rm -f ./getignore - unzip getignore + # - name: Sign darwin binary with Gon + # if: ${{ matrix.os == 'darwin' }} + # env: + # AC_USERNAME: ${{ secrets.AC_USERNAME }} #apple id + # AC_PASSWORD: ${{ secrets.AC_PASSWORD }} #app specific pw for apple id + # run: | + # brew tap mitchellh/gon + # brew install mitchellh/gon/gon + # gon -log-level=debug -log-json ./gon.json + # rm -f ./getignore + # unzip getignore - name: Upload artifact uses: actions/upload-artifact@v1 with: @@ -221,23 +222,23 @@ jobs: - name: package darwin universal binary run: | lipo -create getignore_darwin_arm64/getignore getignore_darwin_amd64/getignore -output getignore - - - name: Import darwin code-signing certificates - uses: Apple-Actions/import-codesign-certs@v1 - with: - p12-file-base64: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_P12_BASE64 }} #Apple Dev ID cert as b64 - p12-password: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_PASSWORD }} #pw for cert + # 20220105: temp remove of Apple codesigning as cert needs renewal + # - name: Import darwin code-signing certificates + # uses: Apple-Actions/import-codesign-certs@v1 + # with: + # p12-file-base64: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_P12_BASE64 }} #Apple Dev ID cert as b64 + # p12-password: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_PASSWORD }} #pw for cert - - name: Sign darwin binary with Gon - env: - AC_USERNAME: ${{ secrets.AC_USERNAME }} #apple id - AC_PASSWORD: ${{ secrets.AC_PASSWORD }} #app specific pw for apple id - run: | - brew tap mitchellh/gon - brew install mitchellh/gon/gon - gon -log-level=debug -log-json ./gon.json - rm -f ./getignore - unzip getignore + # - name: Sign darwin binary with Gon + # env: + # AC_USERNAME: ${{ secrets.AC_USERNAME }} #apple id + # AC_PASSWORD: ${{ secrets.AC_PASSWORD }} #app specific pw for apple id + # run: | + # brew tap mitchellh/gon + # brew install mitchellh/gon/gon + # gon -log-level=debug -log-json ./gon.json + # rm -f ./getignore + # unzip getignore - name: Upload artifact uses: actions/upload-artifact@v1 with: