rebase error #31
Workflow file for this run
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: Compile Python to EXE with Nuitka | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install MinGW (C compiler) | |
run: | | |
choco install mingw # Installs MinGW via Chocolatey | |
- name: Verify GCC Version | |
run: gcc --version | |
- name: Install Nuitka and dependencies | |
run: pip install -U nuitka==1.9.4 requests | |
- name: Compile Python script to EXE | |
run: python -m nuitka --assume-yes-for-downloads --standalone --onefile --include-package=urllib3 --include-package=requests --include-data-dir=core=./core --include-data-dir=debug=./debug --include-data-dir=loader=./loader steamodded_injector.py | |
- name: Upload EXE to Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: steamodded_injector | |
path: ./steamodded_injector.dist/steamodded_injector.exe |