Use folder for json data #4
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: Build BIN | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-py-to-bin: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
- name: Set up Python | |
run: uv python install 3.12 | |
- name: Setup venv | |
run: uv venv | |
- name: Activate venv Windows | |
if: matrix.os == 'windows-latest' | |
run: .venv\Scripts\activate | |
- name: Activate venv Linux | |
if: matrix.os == 'ubuntu-latest' | |
run: source .venv/bin/activate | |
- name: Install requirements | |
run: uv pip install -r requirements.txt | |
- name: Build with PyInstaller | |
run: uv run pyinstaller -F src/main.py --hidden-import sys --add-data ./json_data/:./json_data/ --name Cogs-of-Cronos-AdventureSoft | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Cogs-of-Cronos-AdventureSoft-${{ matrix.os }} | |
path: dist/Cogs-of-Cronos-AdventureSoft* | |
publish: | |
needs: build-py-to-bin | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: Cogs-of-Cronos-AdventureSoft-windows-latest | |
path: windows-artifact | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: Cogs-of-Cronos-AdventureSoft-ubuntu-latest | |
path: linux-artifact | |
- name: Publish | |
uses: softprops/[email protected] | |
with: | |
files: | | |
windows-artifact/Cogs-of-Cronos-AdventureSoft.exe | |
linux-artifact/Cogs-of-Cronos-AdventureSoft | |
tag_name: v${{ github.run_number }} | |
prerelease: false | |
name: v${{ github.run_number }} |