Skip to content

Commit

Permalink
Merge pull request #224 from SuperLlama88888/main
Browse files Browse the repository at this point in the history
Add automatic Windows builds with GitHub Actions
  • Loading branch information
RavinMaddHatter authored Jul 9, 2024
2 parents a3c3af4 + b46a83d commit f70ed4c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build Structura
run-name: Build Structura
on:
push:
branches:
- main
workflow_dispatch:
jobs:
Build:
runs-on: windows-latest
permissions: write-all
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Bundle application
run: |
pip install -r requirements.txt -U pyinstaller
pyinstaller --clean --onefile structura.py
move LICENSE dist/LICENSE
tree /f
- name: Upload as artifact
uses: actions/upload-artifact@v4
with:
name: Structura
path: dist
Binary file modified requirements.txt
Binary file not shown.

0 comments on commit f70ed4c

Please sign in to comment.