forked from thepeacockproject/Peacock
-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (85 loc) · 2.8 KB
/
locale.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
87
88
89
90
91
92
93
94
95
96
97
98
99
name: Localisation
on:
push:
branches: ["v*"]
paths: ["resources/locale.json"]
workflow_dispatch:
jobs:
rebuild-locale:
name: Rebuild Localisation
runs-on: windows-latest
steps:
- name: Checkout Peacock
uses: actions/checkout@v3
with:
token: ${{ secrets.PEACOCKBOT_TOKEN }}
path: "./Peacock"
- name: Checkout Peacock Strings
uses: actions/checkout@v3
with:
token: ${{ secrets.PEACOCKBOT_TOKEN }}
repository: thepeacockproject/peacock-strings
path: "./PeacockStrings"
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: "./Peacock/.nvmrc"
cache: "yarn"
cache-dependency-path: "./Peacock/yarn.lock"
- name: Install Packages
run: |
cd Peacock
yarn install --immutable
#- name: Download ResourceLib
# uses: robinraju/[email protected]
# with:
# repository: "OrfeasZ/ZHMTools"
# latest: true
# fileName: "ResourceLib-win-x64.zip"
# out-file-path: "Peacock/resources"
- name: Download RPKG-CLI
id: rpkgcli
uses: vcup/[email protected]
with:
repository: "glacier-modding/RPKG-Tool"
latest: true
fileName: "rpkg_*-cli.zip"
out-file-path: "Peacock/resources"
- name: Download HMLanguageTools
id: hmlt
uses: vcup/[email protected]
with:
repository: "AnthonyFuller/TonyTools"
latest: true
fileName: "TonyTools.zip"
out-file-path: "Peacock/resources"
- name: Unzip dependencies
run: |
cd Peacock/resources
7z x ${{ steps.rpkgcli.outputs.downloaded_file_0 }}
7z x ${{ steps.hmlt.outputs.downloaded_file_0 }}
- name: Rebuild Locale Packages
run: |
cd Peacock
yarn rebuild-locale
- name: Push updated RPKG files
uses: EndBug/add-and-commit@v9
with:
cwd: "./Peacock"
add: |
resources/dynamic_resources_h2.rpkg
resources/dynamic_resources_h3.rpkg
author_name: PeacockBot
author_email: [email protected]
message: "[skip ci] Update locale packages"
- name: Copy peacockstrings.locr.json
run: |
copy ./Peacock/resources/peacockstrings.locr.json ./PeacockStrings/content/chunk0/peacockstrings.locr.json
- name: Push updated Peacock LOCR
uses: EndBug/add-and-commit@v9
with:
cwd: "./PeacockStrings"
add: content/chunk0/peacockstrings.locr.json
author_name: PeacockBot
author_email: [email protected]
message: "enhancement: update strings"