Skip to content

shrink the icon for now #6

shrink the icon for now

shrink the icon for now #6

Workflow file for this run

name: FNF Porter Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
pip install numpy
pip install pydub
pip install luaparser
pip install pyqt6
- name: Build with PyInstaller
run: |
pyinstaller --onefile setup.py --icon=icon.ico -n "FNF Porter"
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: FNF_Porter_Build
path: |
dist/FNF Porter.exe