Skip to content

build updates, move builder files #5

build updates, move builder files

build updates, move builder files #5

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches: [main]
env:
PYTHON_VERSION: "3.12"
POETRY_VERSION: "1.8.3"
MOD_VERSION: "x.x.x"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Install Poetry ${{env.POETRY_VERSION}}
run: pipx install poetry==${{env.POETRY_VERSION}}
- name: Setup Python ${{env.PYTHON_VERSION}}
uses: actions/setup-python@v5
with:
python-version: ${{env.PYTHON_VERSION}}
cache: "poetry"
- name: Install dependencies
run: poetry install --only main
- name: Build content pack
run: poetry run python3 src/main.py
- name: Get metadata
run: |
echo "MOD_VERSION=$(cat VERSION)" >> $GITHUB_ENV
- name: Save base game content pack
uses: actions/upload-artifact@v4
with:
name: orientalmelon.baechusportraits-${{ env.MOD_VERSION }}-base
path: out/orientalmelon.baechusportraits-${{ env.MOD_VERSION }}-base