Skip to content
Snippets Groups Projects
Commit e7ccb6f0 authored by Pascal Vizeli's avatar Pascal Vizeli
Browse files

Update azure-pipelines-translation.yml for Azure Pipelines

parent dae6895a
No related branches found
No related tags found
No related merge requests found
......@@ -6,8 +6,21 @@ trigger:
include:
- dev
pr: none
schedules:
- cron: "0 1 * * *"
displayName: "translation update"
branches:
include:
- dev
always: true
variables:
- group: translation
- group: translation
resources:
repositories:
- repository: azure
type: github
name: 'home-assistant/ci-azure'
endpoint: 'home-assistant'
jobs:
......@@ -26,3 +39,24 @@ jobs:
./script/translations_upload
displayName: 'Upload Translation'
- job: 'Download'
condition: eq(variables['Build.Reason'], 'Schedule')
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.7'
inputs:
versionSpec: '3.7'
- template: templates/azp-step-git-init.yaml@azure
- script: |
export LOKALISE_TOKEN="$(lokaliseToken)"
export AZURE_BRANCH="$(Build.SourceBranchName)"
./script/translations_download
displayName: 'Download Translation'
- script: |
commit -am "[CI] Translation update"
commit push
displayName: 'Update translation'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment