Update arm64-build.yml #10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build ARM64 macOS App | |
| on: | |
| push: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| build-arm64: | |
| name: Build ARM64 macOS App | |
| runs-on: macos-latest | |
| strategy: | |
| matrix: | |
| python-version: [ "3.12" ] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| architecture: arm64 | |
| - name: Create virtual environment | |
| run: | | |
| python -m venv venv-arm | |
| source venv-arm/bin/activate | |
| pip install --upgrade pip | |
| - name: Install dependencies | |
| run: | | |
| source venv-arm/bin/activate | |
| pip install tensorflow-macos tensorflow-metal numpy scipy scikit-learn matplotlib pyinstaller | |
| - name: Build with PyInstaller | |
| run: | | |
| source venv-arm/bin/activate | |
| pyinstaller --noconfirm \ | |
| --windowed \ | |
| --name D-LENS-arm64 \ | |
| --icon logo.ico \ | |
| --add-data "horizontal_logo.png:." \ | |
| --add-data "Models:Models" \ | |
| main.py | |
| # Backup: Upload to transfer.sh if upload-artifact fails | |
| - name: Zip and upload to transfer.sh | |
| run: | | |
| cd dist | |
| zip -r D-LENS-arm64.zip D-LENS-arm64.app | |
| curl --upload-file ./D-LENS-arm64.zip https://transfer.sh/D-LENS-arm64.zip |