projet-mini-genie-logiciel-.../.gitlab-ci.yml

16 lines
364 B
YAML
Raw Normal View History

2021-09-29 19:52:36 +00:00
stages:
- deploy
Deploy:
image: alpine
stage: deploy
when: manual
before_script:
- apk add subversion findutils
script:
- svn co http://cregut.svn.enseeiht.fr/2021/2sn/idm/mp/M-02 --username lfainsin --password $SVN_PASSWORD svn_repo
- svn up
- cp livrables/* svn_repo/
- svn add * --force
- svn commit -m "$CI_COMMIT_SHORT_SHA"