Skip to content
Snippets Groups Projects
Commit 831a8fdd authored by picklesrus's avatar picklesrus
Browse files

Add translation push cron job to circle.

parent 4244217e
No related branches found
No related tags found
1 merge request!1Synching Fork
......@@ -162,9 +162,31 @@ jobs:
git config --global user.email $(git log --pretty=format:"%ae" -n1)
git config --global user.name $(git log --pretty=format:"%an" -n1)
- run: npm run deploy -- -e $CIRCLE_BRANCH
push-translations:
<<: *defaults
steps:
- *restore_git_cache
- checkout
- *restore_npm_cache
- run: npm run i18n:src
- run: npm run i18n:push
workflows:
version: 2
push-translations:
triggers:
- schedule:
cron: 0 0 * * * # daily at 12 UTC, 8 ET
filters:
branches:
only:
- develop
jobs:
- setup
- push-translations:
requires:
- setup
build-test-deploy:
jobs:
- setup
......
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