Skip to content

Commit 388fe06

Browse files
author
Kyle-Myre
committed
Added Windows Pyinstaller Action
1 parent 4bddf84 commit 388fe06

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/pyinstaller.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,21 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
8-
7+
runs-on: windows-latest
98
steps:
109
- name: Checkout repository
1110
uses: actions/checkout@v2
12-
1311
- name: Set up Python
1412
uses: actions/setup-python@v2
1513
with:
1614
python-version: '3.x'
17-
1815
- name: Install dependencies
1916
run: |
2017
python -m pip install --upgrade pip
2118
pip install pyinstaller
22-
2319
- name: Build with PyInstaller
2420
run: |
2521
pyinstaller --onefile --name Dandilion --add-data "app:app" --icon=assets/icon.ico main.py
26-
2722
- name: Upload artifact
2823
uses: actions/upload-artifact@v4
2924
with:

0 commit comments

Comments
 (0)