From c2b41859c5063af355d543a05e5368f3c40c2aa0 Mon Sep 17 00:00:00 2001 From: Patrick Honkonen <1883101+SaintPatrck@users.noreply.github.com> Date: Tue, 25 Jun 2024 11:57:06 -0400 Subject: [PATCH] [PM-8016] Push string resources to Crowdin (#3347) --- .github/workflows/crowdin-push.yml | 40 ++++++++++++++++++++++++++++++ crowdin.yml | 9 +++++++ 2 files changed, 49 insertions(+) create mode 100644 .github/workflows/crowdin-push.yml create mode 100644 crowdin.yml diff --git a/.github/workflows/crowdin-push.yml b/.github/workflows/crowdin-push.yml new file mode 100644 index 0000000000..7f0dbf7395 --- /dev/null +++ b/.github/workflows/crowdin-push.yml @@ -0,0 +1,40 @@ +name: Crowdin Push + +on: + workflow_dispatch: + push: + branches: + - "main" + +jobs: + crowdin-push: + name: Crowdin Push + runs-on: ubuntu-22.04 + env: + _CROWDIN_PROJECT_ID: "269690" + steps: + - name: Check out repo + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 + + - name: Log in to Azure + uses: Azure/login@cb79c773a3cfa27f31f25eb3f677781210c9ce3d # v1.6.1 + with: + creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }} + + - name: Retrieve secrets + id: retrieve-secrets + uses: bitwarden/gh-actions/get-keyvault-secrets@2bd1450c2cdb2a8ac886232b8589696f22794229 # v0.2.0 + with: + keyvault: "bitwarden-ci" + secrets: "crowdin-api-token" + + - name: Upload sources + uses: crowdin/github-action@67705afb6985401459cd143d5f5f00c9dc212f23 # v1.20.2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }} + with: + config: crowdin.yml + crowdin_branch_name: main + upload_sources: true + upload_translations: false diff --git a/crowdin.yml b/crowdin.yml new file mode 100644 index 0000000000..725469a192 --- /dev/null +++ b/crowdin.yml @@ -0,0 +1,9 @@ +project_id_env: _CROWDIN_PROJECT_ID +api_token_env: CROWDIN_API_TOKEN +preserve_hierarchy: true +base_path: "app/src/main" +files: + - source: "/res/values/strings.xml" + translation: "/res/values-%android_code%/%original_file_name%" + update_option: update_as_unapproved + type: android