-
Notifications
You must be signed in to change notification settings - Fork 4
86 lines (71 loc) · 2.07 KB
/
build.yml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: Build
on:
workflow_dispatch:
repository_dispatch:
types: [update]
push:
branches:
- main
paths:
- 'automation/pyproject.toml'
- 'automation/poetry.lock'
- '**.py'
- 'config.yaml'
- '.github/workflows/build.yml'
pull_request:
branches:
- main
paths:
- 'automation/pyproject.toml'
- 'automation/poetry.lock'
- '**.py'
- 'config.yaml'
- '.github/workflows/build.yml'
permissions:
contents: write
jobs:
process-translations:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Checkout and update the translation-backup submodule
run: git submodule update --init --remote
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: "poetry"
cache-dependency-path: automation/poetry.lock
- name: Install library and dependencies
run: |
cd automation
poetry install --no-interaction --no-dev
- name: Process po files
run: |
cd automation
poetry run process ../
- name: Generate diagram
run: |
cd automation
poetry run progress_diagram two_diagrams ../translations-backup/translations/dwarf-fortress-steam ../images
- name: Push changes to the repository
if: ${{ !contains(fromJSON('["push", "pull_request"]'), github.event_name) }}
uses: EndBug/add-and-commit@v9.1.4
with:
author_name: github-actions[bot]
author_email: 41898282+github-actions[bot]@users.noreply.github.com
trigger-update-data:
if: ${{ !contains(fromJSON('["push", "pull_request"]'), github.event_name) }}
needs: process-translations
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Dispatch dictionary manifest update
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.REPOSITORY_DISPATCH_PAT }}
repository: dfint/update-data
event-type: dict