2017-10-29 14:16:38 +00:00
|
|
|
version: 2
|
|
|
|
jobs:
|
2018-12-04 17:45:45 +00:00
|
|
|
update-docs:
|
|
|
|
docker:
|
|
|
|
- image: acemod/armake:latest
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run:
|
2018-02-04 20:38:59 +00:00
|
|
|
name: Update documentation and translation statistics
|
2018-12-04 17:45:45 +00:00
|
|
|
command: |
|
2018-02-04 20:38:59 +00:00
|
|
|
if [ "${CIRCLE_BRANCH}" == "master" ] && [ "${CIRCLE_PROJECT_USERNAME}" == "acemod" ]; then
|
|
|
|
python3 tools/deploy.py
|
|
|
|
else
|
|
|
|
echo "Skipping, not on acemod/ACE3 master branch..."
|
|
|
|
fi
|
2018-12-04 17:45:45 +00:00
|
|
|
|
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
build-job:
|
|
|
|
jobs:
|
|
|
|
- update-docs:
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: master
|