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 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 (True Cross-Compile) run: | # 1. Create a local Dockerfile that installs Windows Python under Wine cat < Dockerfile.win FROM python:3.10-slim # Install Wine and dependencies RUN dpkg --add-architecture i386 && apt-get update && \ apt-get install -y wine wine32 wine64 wget && \ apt-get clean # Install Windows Python inside Wine RUN wget https://www.python.org/ftp/python/3.10.11/python-3.10.11-amd64.exe && \ wine python-3.10.11-amd64.exe /quiet InstallAllUsers=1 PrependPath=1 && \ rm python-3.10.11-amd64.exe # Install dependencies inside Windows Python RUN wine python -m pip install --upgrade pip RUN wine python -m pip install pyinstaller requests questionary rich python-dotenv WORKDIR /src EOF # 2. Build local image docker build -t true-win-builder -f Dockerfile.win . # 3. Use unique container name CONTAINER_NAME="win-build-${{ github.run_id }}" # 4. Run build using the Windows Python interpreter docker create --name $CONTAINER_NAME true-win-builder wine python -m PyInstaller --onefile --name tamigo-cli tamigo.py docker cp . $CONTAINER_NAME:/src docker start -a $CONTAINER_NAME # 5. Extract and cleanup mkdir -p win_dist docker cp $CONTAINER_NAME:/src/dist/. ./win_dist/ docker rm $CONTAINER_NAME - name: Debug - List Files if: always() run: | ls -R win_dist/ || echo "No win_dist folder" find . -name "*.exe" - name: Upload Windows Artifact uses: actions/upload-artifact@v3 with: name: binary-windows path: win_dist/*.exe