Skip to content

Latest pyinstaller dev branch with Python 3.11 #12

Latest pyinstaller dev branch with Python 3.11

Latest pyinstaller dev branch with Python 3.11 #12

Workflow file for this run

name: Build Workflow
on:
push:
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: '3.11'
architecture: 'x64'
- name: Install requirements
run: |
pip install --upgrade pip
pip install git+https://github.com/pyinstaller/pyinstaller@develop
pip install -r requirements.txt
- name: Run PyInstaller
run: |
python -m PyInstaller epson_print_conf.spec -- --default
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/epson_print_conf.exe