Skip to content

Commit

Permalink
workflow: add Crowdin automation scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
lifehackerhansol committed Dec 13, 2024
1 parent 435cc7e commit 4540595
Show file tree
Hide file tree
Showing 2 changed files with 103 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/crowdin-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 }}
40 changes: 40 additions & 0 deletions .github/workflows/crowdin-upload.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Upload source files to Crowdin

on:
push:
branches: [ master ]
paths:
- 'retail/nitrofiles/languages/en/in_game_menu.ini'
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
- name: Build test
run: |
make nightly
- name: Push to Crowdin
uses: crowdin/github-action@v2
with:
upload_sources: true
env:
CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }}

0 comments on commit 4540595

Please sign in to comment.