Skip to content

Update README.md

Update README.md #19

Workflow file for this run

name: Build EXE
on:
push:
branches: [master]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
pip install PySide6
- name: Build EXE
run: |
pyinstaller Cat.spec
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: exe-build
path: dist/Cat.exe