Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
dunkmann00 committed Apr 15, 2024
1 parent 43bcfde commit a541ded
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit a541ded

Please sign in to comment.