-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (61 loc) · 2.18 KB
/
i18n.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
name: i18n
on:
push:
branches:
- main
jobs:
i18n:
runs-on: ubuntu-latest
steps:
- run: echo "${{ github.actor }}"
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- run: |
git config user.name github-actions
git config user.email [email protected]
- name: "COMET Library: Clone translations"
uses: actions/checkout@v3
with:
repository: vivid-planet/comet-lang
token: ${{ secrets.VIVID_PLANET_BOT_TOKEN }}
path: "demo/admin/lang/comet-lang"
- name: "COMET Brevo Library: Clone translations"
uses: actions/checkout@v3
with:
repository: vivid-planet/comet-brevo-module-lang
token: ${{ secrets.VIVID_PLANET_BOT_TOKEN }}
path: "demo/admin/lang/comet-brevo-module-lang"
- name: "Demo: Clone translations"
uses: actions/checkout@v3
with:
repository: vivid-planet/comet-brevo-module-demo-lang
token: ${{ secrets.VIVID_PLANET_BOT_TOKEN }}
path: "demo/admin/lang/comet-brevo-module-demo-lang"
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
cache: "pnpm" # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies
- run: pnpm install --frozen-lockfile
- name: "Library: Extract i18n strings"
run: |
pnpm run intl:extract
cp -r lang/* demo/admin/lang/comet-brevo-module-lang/
- name: "Library: Update translateable strings"
uses: EndBug/add-and-commit@v9
with:
cwd: "./demo/admin/lang/comet-brevo-module-lang"
- name: "Demo: Extract i18n strings"
run: |
cd demo/admin
pnpm run intl:extract
cp -r lang-extracted/* lang/comet-brevo-module-demo-lang
- name: "Demo: Update translateable strings"
uses: EndBug/add-and-commit@v9
with:
cwd: "./demo/admin/lang/comet-brevo-module-demo-lang"