Compare commits

..

No commits in common. "main" and "v1.1" have entirely different histories.
main ... v1.1

View file

@ -10,15 +10,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install system dependencies (Tkinter)
run: apt-get update && apt-get install -y python3-tk
# В Ubuntu для работы Tkinter необходим системный пакет python3-tk
run: sudo apt-get update && sudo apt-get install -y python3-tk
- name: Install Python dependencies
run: |
@ -27,6 +28,7 @@ jobs:
pip install pyinstaller
- name: Build Linux executable
# Флаг --windowed убирает консоль, --onefile собирает все в один файл
run: pyinstaller --onefile --windowed --name factorio-mod-sync-linux main.py
- name: Upload Linux artifact
@ -38,14 +40,12 @@ jobs:
build-windows:
name: Build Windows
runs-on: ubuntu-latest
# Используем контейнер с настроенным Wine и Python 3.11 под Windows
container:
image: tobix/pywine:3.11
steps:
- name: Install Node.js and Git (required for Actions)
run: apt-get update && apt-get install -y nodejs git
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Install Python dependencies (Windows)
run: |
@ -69,14 +69,13 @@ jobs:
steps:
- name: Download all artifacts
uses: actions/download-artifact@v3
with:
path: artifacts
- name: Add files to Forgejo Release
uses: https://github.com/softprops/action-gh-release@v2
uses: softprops/action-gh-release@v1
with:
files: |
artifacts/linux-build/factorio-mod-sync-linux
artifacts/windows-build/factorio-mod-sync-windows.exe
linux-build/factorio-mod-sync-linux
windows-build/factorio-mod-sync-windows.exe
env:
# В Forgejo GITHUB_TOKEN автоматически мапится на внутренний токен доступа
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}