Skip to content

AppDir support

AppDir support #21

Workflow file for this run

name: Build and Deploy exe
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: |
pip install -r requirements-windows.txt
pip install pyinstaller
- name: Build executable
run: |
pyinstaller --windowed --name Spatial spatial.py
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: Spatial
path: "dist/*"