Update README.md #43
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: DrkGPT to EXE | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "main" branch | |
push: | |
branches: [ "main", "master" ] | |
pull_request: | |
branches: [ "main", "master" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Check-out repository | |
- name: Check out DrkGPT | |
uses: actions/checkout@v3 | |
# Setup Python | |
- name: Setup Python For DrkGPT | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' # Version range or exact version of a Python version to use, using SemVer's version range syntax | |
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified | |
cache: 'pip' | |
- name: Upgrade Pip and install DrkGPT Dependecies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r python/requirements.txt | |
- name: Install PySide6 | |
run: | | |
pip install pyside6 | |
# Build python script into a stand-alone exe | |
- name: Build DrkGPT into S-A EXE | |
uses: Nuitka/Nuitka-Action@main | |
with: | |
script-name: python/drkgpt.py | |
onefile: true | |
enable-plugins: pyside6 | |
disable-console: false | |
# Uploads artifact | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ runner.os }} Build | |
path: | | |
build/drkgpt.exe | |