mirror of
https://github.com/meshtastic/web.git
synced 2026-08-01 07:26:34 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26 lines
722 B
YAML
26 lines
722 B
YAML
name: Crowdin Upload Translations Action
|
|
|
|
on:
|
|
workflow_dispatch: # Allow manual triggering
|
|
|
|
jobs:
|
|
synchronize-with-crowdin:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v7
|
|
|
|
- name: Upload translations with Crowdin
|
|
uses: crowdin/github-action@v2
|
|
with:
|
|
base_url: "https://meshtastic.crowdin.com/api/v2"
|
|
config: "./apps/web/crowdin.yml"
|
|
upload_sources: false
|
|
upload_translations: true
|
|
download_translations: false
|
|
crowdin_branch_name: "main"
|
|
env:
|
|
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|