-
Notifications
You must be signed in to change notification settings - Fork 77
63 lines (49 loc) · 1.5 KB
/
crowdin-commit.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
name: Import translations from Crowdin
on:
schedule:
- cron: "0 0 1,15 * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkitarm:20241104
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
submodules: recursive
- name: Setup environment
run: git config --global safe.directory '*'
- name: Install tools
run: |
sudo apt-get update
sudo apt-get install gcc -y
sudo gcc lzss.c -o /usr/local/bin/lzss
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Setup Crowdin CLI
run: |
npm i -g @crowdin/cli
- name: Pull from Crowdin
env:
CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }}
run: |
crowdin pull
- name: Pull origin
run: git pull origin master --ff-only # Pull origin in case a commit has been done while updating
# This makes sure that the app actually builds before pushing to master
- name: Build test
run: |
make nightly
- name: Commit changes
run: |
git config user.email "[email protected]"
git config user.name "TWLBot"
git checkout master
git commit -a -m "Automatic translation import"
- name: Push changes
uses: ad-m/github-push-action@master
with:
branch: master
github_token: ${{ secrets.TWLBOT_TOKEN }}