Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build Workflow

on:
push:
branches: main
branches: main

jobs:
build-windows:
Expand All @@ -24,4 +24,24 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: DeepLabCut-Display
path: dist/DeepLabCut-Display.exe
path: dist/DeepLabCut-Display.exe
build-macos:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
architecture: 'arm64'
- name: Install requirements
run: |
pip install -r requirements.txt
- name: Run PyInstaller
run: |
python -m PyInstaller mainGUI.spec
- uses: actions/upload-artifact@v3
with:
name: DeepLabCut-Display-macOS
path: dist/DeepLabCut-Display