From a541dedb415a169f6ec86779defd1126bee386fd Mon Sep 17 00:00:00 2001 From: George Waters Date: Mon, 15 Apr 2024 15:34:58 -0400 Subject: [PATCH] TEST --- .github/workflows/build.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 158ca97..123871c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -119,15 +119,10 @@ jobs: if: runner.os == 'macOS' || runner.os == 'Windows' env: NOTIFICATION_NAME: ${{ matrix.build.notifications.artifact-name }} - NOTFICATION_BUILD: ${{ matrix.build.notifications.build-path }} + NOTIFICATION_BUILD: ${{ matrix.build.notifications.build-path }} run: | - python -c " - from pathlib import Path - import shutil - - zip_path = Path(r'$NOTFICATION_BUILD') / '$NOTIFICATION_NAME.zip' - shutil.unpack_archive(zip_path, r'$NOTFICATION_BUILD') - " + ZIP_PATH=$(python -c "import pathlib; print(pathlib.Path(r'$NOTIFICATION_BUILD') / '$NOTIFICATION_NAME.zip')") + unzip "$ZIP_PATH" "$NOTIFICATION_BUILD" - name: Build app binary env: MACOS_CODESIGN_IDENTITY: ${{ secrets.PROD_MACOS_CERTIFICATE_IDENTITY }}