Merge pull request #440 from wisp-gg/feature/disable-password-symbols #75
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: Push localization strings to Crowdin | |
on: | |
push: | |
paths: | |
- 'src/locales/**' | |
branches: | |
- 'master' | |
jobs: | |
push-to-crowdin: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set branch name from source branch | |
run: echo "##[set-output name=branch;]${GITHUB_REF#refs/heads/}" | |
id: extract_branch | |
- name: Push | |
uses: crowdin/[email protected] | |
with: | |
upload_sources: true | |
env: | |
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} |