Skip to content

Commit

Permalink
Automate translation sync to eduID apps (Android and iOS)
Browse files Browse the repository at this point in the history
  • Loading branch information
phavekes committed Nov 13, 2024
1 parent 1c4639a commit 3f5e2e2
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Tiqr/eduid-app-android:
- source: localizations.yaml
dest: localizations.yaml

Tiqr/eduid-app-ios:
- source: localizations.yaml
dest: EduID/localizations.yaml

53 changes: 53 additions & 0 deletions .github/workflows/localicious.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Update translations
on:
workflow_dispatch:
push:
paths:
- 'localizations.yaml'
jobs:
sync-eduid-apps:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '#AUTO#') }}
steps:
- name: Checkout Repository
uses: actions/checkout@master
- name: Get token for the Tiqr github org
uses: actions/create-github-app-token@v1
id: app-token-tiqr-org
with:
app-id: ${{ secrets.SYNC_APP_ID }}
private-key: ${{ secrets.SYNC_PRIVATE_KEY }}
owner: Tiqr
- name: Create PR for new translation in eduid-app repos
uses: BetaHuhn/repo-file-sync-action@v1
with:
GH_INSTALLATION_TOKEN: ${{ steps.app-token-tiqr-org.outputs.token }}
COMMIT_PREFIX: "#AUTO#"
CONFIG_PATH: .github/sync.yml
localicious:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- name: Install localicious/
run: |
npm install -g @picnicsupermarket/localicious
- name: Create Localizable.strings files
run: |
cd ${{ github.workspace }}
yarn localicious render ./localizations.yaml ./account-gui/src/locale/ --languages en,nl --outputTypes js -c SHARED
rm -fr ./account-gui/src/locale/js/Localizable.ts
yarn localicious render ./localizations.yaml ./myconext-gui/src/locale/ --languages en,nl --outputTypes js -c SHARED
rm -fr ./myconext-gui/src/locale/js/Localizable.ts
- name: Commit updated files
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automated update of strings.xml after updating localizations.yaml
file_pattern: '**/strings.json'


0 comments on commit 3f5e2e2

Please sign in to comment.