.gitlab-ci.yml 518 Bytes
Newer Older
Wolfgang Knopki's avatar
Wolfgang Knopki committed
1
2
3
4
5
6
7
8
9
10
prod:    
  stage: deploy
  script:
    - echo "pipeline started"
    - cp -r ./i18n/ /usr/lib/ckan/default/src/ckan-translation/
    - source /usr/lib/ckan/default/bin/activate
    - cd /usr/lib/ckan/default/src/ckan
    - python setup.py update_catalog --locale de
    - python setup.py compile_catalog --locale de
    - python setup.py update_catalog --locale en_GB
Wolfgang Knopki's avatar
Wolfgang Knopki committed
11
    - python setup.py compile_catalog --locale en_GB
Wolfgang Knopki's avatar
Wolfgang Knopki committed
12
13
14
15
16
17
    - deactivate
    - supervisorctl restart all
  tags: 
    - production
  only:
    - master