socializer/.gitlab-ci.yml

12 lines
222 B
YAML
Raw Normal View History

2018-12-16 07:23:45 -06:00
production:
type: deploy
script:
2018-12-16 17:30:50 -06:00
- pip install --upgrade -r requirements.txt
- cd src
- python setup.py py2exe
- cd ..
2018-12-17 00:03:36 -06:00
- move src\dist dist
2018-12-16 17:30:50 -06:00
artifacts:
2018-12-17 00:09:39 -06:00
paths:
2018-12-17 00:45:10 -06:00
- dist\*
2018-12-17 00:03:36 -06:00
expire_in: 1 week