test .gitlab-ci.yml file

This commit is contained in:
Laurent Fainsin 2021-09-29 19:52:36 +00:00
parent 6c555f1ddd
commit 410a8c7036

15
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,15 @@
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"