We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bddf84 commit 388fe06Copy full SHA for 388fe06
.github/workflows/pyinstaller.yaml
@@ -4,26 +4,21 @@ on: [push, pull_request]
4
5
jobs:
6
build:
7
- runs-on: ubuntu-latest
8
-
+ runs-on: windows-latest
9
steps:
10
- name: Checkout repository
11
uses: actions/checkout@v2
12
13
- name: Set up Python
14
uses: actions/setup-python@v2
15
with:
16
python-version: '3.x'
17
18
- name: Install dependencies
19
run: |
20
python -m pip install --upgrade pip
21
pip install pyinstaller
22
23
- name: Build with PyInstaller
24
25
pyinstaller --onefile --name Dandilion --add-data "app:app" --icon=assets/icon.ico main.py
26
27
- name: Upload artifact
28
uses: actions/upload-artifact@v4
29
0 commit comments