Merge pull request #3509 from ecency/feature/wallet-transaction-id #59
This file contains hidden or 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: Crowdin Upload Sources | |
| # Pushes new/changed English source strings to Crowdin whenever the base locale | |
| # changes on development. One-way (repo -> Crowdin); creates no commits in the repo. | |
| on: | |
| push: | |
| branches: [development] | |
| paths: | |
| - 'src/config/locales/en-US.json' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| upload: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Upload sources to Crowdin | |
| uses: crowdin/github-action@v2 | |
| with: | |
| upload_sources: true | |
| upload_translations: false | |
| download_translations: false | |
| # Upload into the same Crowdin branch the translations live under, so | |
| # sources don't fork off into a separate branchless copy. | |
| crowdin_branch_name: development | |
| env: | |
| CROWDIN_PROJECT_ID: "340925" | |
| CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} |