From 0a0baebaadd76487dfdaa1e895c44d3b1eb51c12 Mon Sep 17 00:00:00 2001 From: scito Date: Sun, 5 Oct 2025 16:52:26 +0200 Subject: [PATCH] fix: comment out macOS 14 build configuration in CI workflow --- .github/workflows/ci_release.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index e95c05f..d65670c 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -272,19 +272,19 @@ jobs: pyinstaller -y extract_otp_secrets_macos.spec installer/build_dmg.sh # Disable WARN: Cannot import pyzbar module. This problem is probably due to the missing zbar shared library. - - os: macos-14 - TARGET: macos - # https://pyinstaller.org/en/stable/spec-files.html#spec-file-options-for-a-macos-bundle - EXE: extract_otp_secrets - ASSET_NAME: extract_otp_secrets${{ needs.create-release.outputs.inline_version }}_macos_arm64 - DMG: extract_otp_secrets.dmg - ASSET_NAME_DMG: extract_otp_secrets${{ needs.create-release.outputs.inline_version }}_macos_arm64.dmg - ASSET_MIME: application/octet-stream - UPLOAD: true - CMD_BUILD: | - VERSION_STR=$(setuptools-git-versioning) COPYRIGHT_YEARS='2020-2025' envsubst < installer/extract_otp_secrets_macos_template.spec > extract_otp_secrets_macos.spec - pyinstaller -y extract_otp_secrets_macos.spec - installer/build_dmg.sh + # - os: macos-14 + # TARGET: macos + # # https://pyinstaller.org/en/stable/spec-files.html#spec-file-options-for-a-macos-bundle + # EXE: extract_otp_secrets + # ASSET_NAME: extract_otp_secrets${{ needs.create-release.outputs.inline_version }}_macos_arm64 + # DMG: extract_otp_secrets.dmg + # ASSET_NAME_DMG: extract_otp_secrets${{ needs.create-release.outputs.inline_version }}_macos_arm64.dmg + # ASSET_MIME: application/octet-stream + # UPLOAD: true + # CMD_BUILD: | + # VERSION_STR=$(setuptools-git-versioning) COPYRIGHT_YEARS='2020-2025' envsubst < installer/extract_otp_secrets_macos_template.spec > extract_otp_secrets_macos.spec + # pyinstaller -y extract_otp_secrets_macos.spec + # installer/build_dmg.sh steps: - name: Output path if: runner.os == 'Windows'