/ ‘.gitlab-ci.yml’
This commit is contained in:
parent
69c9d60127
commit
768294035d
1 changed files with 21 additions and 2 deletions
|
|
@ -1,5 +1,24 @@
|
||||||
image: python:3.7-alpine
|
image: python:3.7-alpine
|
||||||
|
|
||||||
job:
|
pages:
|
||||||
|
stage: deploy
|
||||||
script:
|
script:
|
||||||
- apk update && apk add make
|
- apk update && apk add make
|
||||||
|
- pip install -r requirements.txt
|
||||||
|
- make publish
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- /var/www/webapp_doohoyi/nosignal.hopto.org_site/pelican
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
|
||||||
|
test:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- apk update && apk add make
|
||||||
|
- pip install -r requirements.txt
|
||||||
|
- make publish
|
||||||
|
only:
|
||||||
|
- branches
|
||||||
|
except:
|
||||||
|
- master
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue