2023-02-06 14:06:43 +00:00
|
|
|
name: Translations
|
|
|
|
|
|
|
|
# yamllint disable-line rule:truthy
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
paths:
|
|
|
|
- "**strings.json"
|
|
|
|
|
|
|
|
env:
|
2025-01-14 15:23:15 +00:00
|
|
|
DEFAULT_PYTHON: "3.13"
|
2023-02-06 14:06:43 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
upload:
|
|
|
|
name: Upload
|
|
|
|
if: github.repository_owner == 'home-assistant'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout the repository
|
2024-10-24 08:04:21 +00:00
|
|
|
uses: actions/checkout@v4.2.2
|
2023-02-06 14:06:43 +00:00
|
|
|
|
|
|
|
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
|
2024-10-25 08:45:14 +00:00
|
|
|
uses: actions/setup-python@v5.3.0
|
2023-02-06 14:06:43 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ env.DEFAULT_PYTHON }}
|
|
|
|
|
|
|
|
- name: Upload Translations
|
|
|
|
run: |
|
|
|
|
export LOKALISE_TOKEN="${{ secrets.LOKALISE_TOKEN }}"
|
|
|
|
python3 -m script.translations upload
|