-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (36 loc) · 1.23 KB
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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