Skip to content

Add Manor Lords to README.md #4

Add Manor Lords to README.md

Add Manor Lords to README.md #4

Workflow file for this run

name: 'Create a standalone EXE with PyInstaller'
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'main.py'
- 'games.json'
pull_request:
branches:
- main
paths:
- 'main.py'
- 'games.json'
jobs:
create-standalone-exe:
runs-on: windows-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5.1.0
with:
python-version: '3.12'
- name: Install PyInstaller
run: 'pip install PyInstaller'
- name: Run PyInstaller
run: 'pyinstaller -F -n xgp-save-extractor --add-data games.json:. main.py'
- name: Upload standalone EXE
uses: actions/upload-artifact@v4
with:
name: xgp-save-extractor
path: dist/xgp-save-extractor.exe