Skip to content

Update README.md

Update README.md #3

name: Package Application with PyInstaller
on:
push:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: >
python -m pip install --upgrade pip
pip install . # Install dependencies; modify if using requirements.txt
- name: Package Application with PyInstaller
run: |
pyinstaller pyinstaller.spec
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Windows-exe
path: dist/windows.exe