Skip to content

Commit

Permalink
Added Windows Pyinstaller Action
Browse files Browse the repository at this point in the history
  • Loading branch information
OxSikrox committed Jan 1, 2025
1 parent 4bddf84 commit 388fe06
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/pyinstaller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,21 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
- name: Build with PyInstaller
run: |
pyinstaller --onefile --name Dandilion --add-data "app:app" --icon=assets/icon.ico main.py
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 388fe06

Please sign in to comment.