Build(deps-dev): Bump @types/node from 25.0.8 to 25.0.9 in the types … #327
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
| # SPDX-FileCopyrightText: Copyright 2025 New Vector Ltd. | |
| # SPDX-FileCopyrightText: Copyright 2025, 2026 Element Creations Ltd. | |
| # | |
| # SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial | |
| name: Upload translation files to Localazy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| upload: | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout the code | |
| uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup-node | |
| - name: Upload translations to Localazy | |
| run: pnpm localazy upload -w "$LOCALAZY_WRITE_KEY" | |
| env: | |
| LOCALAZY_WRITE_KEY: ${{ secrets.LOCALAZY_WRITE_KEY }} |