Skip to content

Commit

Permalink
Build exe
Browse files Browse the repository at this point in the history
  • Loading branch information
probonopd committed Jul 25, 2024
1 parent f572b11 commit 3b576c3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/exe.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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.txt
- name: Build executable
run: |
pyinstaller --windowed --onefile --name Spatial spatial.py
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: Spatial.exe
path: dist/Spatial.exe

0 comments on commit 3b576c3

Please sign in to comment.