2024-06-25 18:57:06 +03:00
|
|
|
name: Crowdin Push
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "main"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
crowdin-push:
|
|
|
|
name: Crowdin Push
|
2024-09-30 19:51:05 +03:00
|
|
|
runs-on: ubuntu-24.04
|
2024-06-25 18:57:06 +03:00
|
|
|
env:
|
|
|
|
_CROWDIN_PROJECT_ID: "269690"
|
|
|
|
steps:
|
|
|
|
- name: Check out repo
|
2024-10-28 17:26:16 +03:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-06-25 18:57:06 +03:00
|
|
|
|
|
|
|
- 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
|
2024-10-28 17:26:16 +03:00
|
|
|
uses: crowdin/github-action@2d540f18b0a416b1fbf2ee5be35841bd380fc1da # v2.3.0
|
2024-06-25 18:57:06 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}
|
|
|
|
with:
|
|
|
|
config: crowdin.yml
|
|
|
|
upload_sources: true
|
|
|
|
upload_translations: false
|