Fix L10n Source Extraction (#1290) #135
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update l10n Source Strings | |
on: | |
push: | |
branches: [master] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-update-l10n | |
cancel-in-progress: true | |
jobs: | |
extract-and-upload-strings: | |
strategy: | |
fail-fast: false | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
with: | |
fetch-depth: 0 | |
# Install the .NET Core workload | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0 | |
with: | |
dotnet-version: 5.0.x | |
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild | |
- name: Setup MSBuild.exe (Windows OS) | |
uses: microsoft/setup-msbuild@1ff57057b5cfdc39105cd07a01d78e9b0ea0c14c # v1.3.1 | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # So the PATH can be set by this step | |
- name: Restore packages | |
run: msbuild l10n/l10n.proj /t:restore /p:Configuration=Release /p:Platform="Any CPU" | |
- name: Install Crowdin cli | |
run: npm i -g @crowdin/cli | |
- name: Download Palaso.en.xlf source file # new strings will be merged into the existing file | |
working-directory: ./l10n | |
run: crowdin download sources -T ${{ secrets.CROWDIN_PAT }} -i ${{ secrets.CROWDIN_PROJECT_ID }} | |
- name: Update l10n strings | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # So gitversion can set environment vars during the build | |
run: msbuild l10n/l10n.proj /t:UpdateCrowdin /p:Configuration=Release /p:Platform="Any CPU" | |
- name: Upload Palaso.en.xlf source file | |
working-directory: ./l10n | |
run: crowdin upload sources -T ${{ secrets.CROWDIN_PAT }} -i ${{ secrets.CROWDIN_PROJECT_ID }} |