-
Notifications
You must be signed in to change notification settings - Fork 5
47 lines (38 loc) · 1.08 KB
/
main.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
name: Main
on:
push:
branches:
- main
workflow_dispatch:
jobs:
generate:
runs-on: ubuntu-latest
concurrency:
group: main
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
ref: generated
path: './out/generated'
- uses: actions/checkout@v3
with:
ref: locales
path: './out/locales'
- uses: actions/setup-node@v3
with:
node-version: 21
- run: npx @spyglassmc/mcdoc-cli locale ./out/locales/en.json --upgrade --verbose
- run: npx @spyglassmc/mcdoc-cli export ./out/generated/symbols.json --ref --verbose
- uses: EndBug/add-and-commit@v9
with:
cwd: './out/generated'
author_name: GitHub Actions
author_email: actions@github.com
message: '🚀 Update exported symbols'
- uses: EndBug/add-and-commit@v9
with:
cwd: './out/locales'
author_name: 'GitHub Actions'
author_email: actions@github.com
message: '🌐 Update localization'