ACE3/circle.yml

25 lines
585 B
YAML
Raw Normal View History

2017-10-29 14:16:38 +00:00
version: 2
jobs:
update-docs:
docker:
- image: acemod/armake:latest
steps:
- checkout
- run:
2018-02-04 20:38:59 +00:00
name: Update documentation and translation statistics
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
workflows:
version: 2
build-job:
jobs:
- update-docs:
filters:
branches:
only: master