pyinstaller-build #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pyinstaller-build | |
on: | |
workflow_dispatch: | |
inputs: | |
type: | |
description: 'Whether to build a single file (onefile) or directory (dir) dist' | |
required: true | |
default: 'dir' | |
jobs: | |
build-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip --version | |
pip install -e . | |
pip install pyinstaller | |
pip install path | |
- name: Run PyInstaller build | |
run: | | |
pyinstaller pyinstaller.spec ${{ github.event.inputs.type }} | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: cq-cli-Linux-x86_64 | |
path: dist | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip --version | |
pip install -e . | |
pip install pyinstaller | |
pip install path | |
- name: Run PyInstaller build | |
run: | | |
pyinstaller pyinstaller.spec ${{ github.event.inputs.type }} | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: cq-cli-MacOS | |
path: dist | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip --version | |
pip install -e . | |
pip install pyinstaller | |
pip install path | |
- name: Run build | |
run: | | |
pyinstaller pyinstaller.spec ${{ github.event.inputs.type }} | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: cq-cli-Windows | |
path: dist |