name: Build Tamigo CLI on: push: branches: [ "main", "master" ] pull_request: branches: [ "main", "master" ] workflow_dispatch: jobs: build-linux: name: Build Linux Binary runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: '3.12' - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Build with PyInstaller run: | pyinstaller --onefile --name tamigo-cli tamigo.py - name: Upload Linux Artifact uses: actions/upload-artifact@v3 with: name: binary-linux path: dist/tamigo-cli build-windows: name: Build Windows Binary runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Build Windows executable via Docker (Stable) run: | # Use a standard Wine-based PyInstaller image docker create --name builder cdrx/pyinstaller-windows # Copy source code into the container docker cp . builder:/src # Run the build using the image's internal logic but specifying our requirements # Most of these images default to running 'pyinstaller' on the /src folder docker start -a builder # Copy the results back docker cp builder:/src/dist . # Clean up docker rm builder - name: Debug - List output files run: ls -R dist/ - name: Upload Windows Artifact uses: actions/upload-artifact@v3 with: name: binary-windows path: dist/*.exe