50a2dc9560
* build: update cypress projectId * build: rm unused cypress key * test: save cypress videos * build: rm start-server-and-test * build: update github action cache usage * build: use cypress action
41 lines
955 B
YAML
41 lines
955 B
YAML
name: Crowdin Upload
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
synchronize-with-crowdin:
|
|
name: Upload sources to Crowdin
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 14
|
|
registry-url: https://registry.npmjs.org
|
|
cache: 'yarn'
|
|
|
|
- name: Install dependencies
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- name: Extract translations
|
|
run: "yarn i18n:extract"
|
|
|
|
- name: Synchronize
|
|
uses: crowdin/github-action@1.1.0
|
|
with:
|
|
upload_sources: true
|
|
download_translations: false
|
|
project_id: 458284
|
|
token: ${{ secrets.CROWDIN_PERSONAL_TOKEN_SECRET }}
|
|
source: 'src/locales/en-US.po'
|
|
translation: 'src/locales/%locale%.po'
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|