.gitlab-ci.yml 249 Bytes
Newer Older
Wolfgang Knopki's avatar
Wolfgang Knopki committed
1
2
production:
  script:
3
  - rsync -a ./mymodule/ /opt/simplesamlphp/modules/mymodule/
Wolfgang Knopki's avatar
Wolfgang Knopki committed
4
5
  only: 
  - master
Wolfgang Knopki's avatar
Wolfgang Knopki committed
6
7
  tags: 
  - SSO
Wolfgang Knopki's avatar
Wolfgang Knopki committed
8
  
Wolfgang Knopki's avatar
Wolfgang Knopki committed
9
10
testing:
  script:
11
  - rsync -a ./mymodule/ /opt/simplesamlphptest/modules/mymodule/
Wolfgang Knopki's avatar
Wolfgang Knopki committed
12
13
  only:
  - testing
Wolfgang Knopki's avatar
Wolfgang Knopki committed
14
15
  tags:
  - SSO
Wolfgang Knopki's avatar
Wolfgang Knopki committed
16
17