Skip to content

Refactor config and pyinstaller build #5

Refactor config and pyinstaller build

Refactor config and pyinstaller build #5

name: Build Executables
on:
pull_request:
branches:
- '**'
jobs:
build-executables:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Pythonx`
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install poetry
poetry install
brew install nvm
poetry run install-dashboard
- name: Build executables
run: |
poetry run python -m openadapt.build
zip -r OpenAdapt.zip dist/OpenAdapt.app
- name: Upload executables
uses: actions/upload-artifact@v2
with:
name: OpenAdapt.app
path: OpenAdapt.zip