-
Notifications
You must be signed in to change notification settings - Fork 6
53 lines (49 loc) · 1.28 KB
/
sync-all-to-paratranz.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
name: Sync all to ParaTranz
on:
workflow_call:
inputs:
target_lang:
description: "Target language to run"
required: true
type: string
workflow_dispatch:
inputs:
target_lang:
description: "Target language to run"
required: true
type: choice
options:
- zh_CN
- ja_JP
- ko_KR
- pt_BR
- fr_FR
- es_ES
- tr_TR
- de_DE
- pl_PL
- ru_RU
env:
PARATRANZ_TOKEN: ${{ secrets.PARATRANZ_TOKEN }}
jobs:
sync-all-to-paratranz:
name: ${{ inputs.target_lang }} Sync all to ParaTranz
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Get project ID
id: get-project-id
uses: ./.github/actions/get-project-id
with:
target_lang: ${{ inputs.target_lang }}
- name: Ensure Dependencies
uses: ./.github/actions/ensure-dependencies
- name: Sync to ParaTranz
run: >-
poetry run python main.py action sync-all-to-paratranz
--subdirectory='nightly-history'
env:
PARATRANZ_PROJECT_ID: ${{ steps.get-project-id.outputs.project_id }}
TARGET_LANG: ${{ inputs.target_lang }}