From 0e6a4818ea45c16e04cfea7791b1bad068e1786d Mon Sep 17 00:00:00 2001 From: Jeremy Gallant <8975765+philon-@users.noreply.github.com> Date: Wed, 18 Jun 2025 21:48:41 +0200 Subject: [PATCH] fix: Crowdin upload sources action (#672) * Fix Crowdin upload sources action * Replace biome with deno in vscode extension recommendations --------- Co-authored-by: philon- --- .github/workflows/crowdin-upload-sources.yml | 22 ++++++++++---------- .vscode/extensions.json | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/crowdin-upload-sources.yml b/.github/workflows/crowdin-upload-sources.yml index 4f77f1b3..882f73c7 100644 --- a/.github/workflows/crowdin-upload-sources.yml +++ b/.github/workflows/crowdin-upload-sources.yml @@ -5,9 +5,9 @@ on: # Monitor all .json files within the /src/i18n/locales/en/ directory. # This ensures the workflow triggers if any the English namespace files are modified on the main branch. paths: - - '/src/i18n/locales/en/**/*.json' - branches: [ main ] - workflow_dispatch: # Allow manual triggering + - "/src/i18n/locales/en/*.json" + branches: [main] + workflow_dispatch: # Allow manual triggering jobs: synchronize-with-crowdin: @@ -20,13 +20,13 @@ jobs: - name: Upload sources with Crowdin uses: crowdin/github-action@v2 with: - base_url: 'https://meshtastic.crowdin.com/api/v2' - config: 'crowdin.yml' - upload_sources: true - upload_translations: false - download_translations: false - crowdin_branch_name: 'main' - + base_url: "https://meshtastic.crowdin.com/api/v2" + config: "crowdin.yml" + upload_sources: true + upload_translations: false + download_translations: false + crowdin_branch_name: "main" + env: CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} - CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} \ No newline at end of file + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} diff --git a/.vscode/extensions.json b/.vscode/extensions.json index e11f647b..15b1f6c5 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["bradlc.vscode-tailwindcss", "biomejs.biome"] + "recommendations": ["bradlc.vscode-tailwindcss", "denoland.vscode-deno"] }