26 lines
441 B
YAML
26 lines
441 B
YAML
image: python:3.7-alpine
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- apk update && apk add make
|
|
- pip install -r requirements.txt
|
|
- make publish
|
|
- sudo cp -R ./public/* /var/www/webapp_doohoyi/nosignal.hopto.org_site/pelican
|
|
artifacts:
|
|
paths:
|
|
- public/
|
|
only:
|
|
- master
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- apk update && apk add make
|
|
- pip install -r requirements.txt
|
|
- make publish
|
|
only:
|
|
- branches
|
|
except:
|
|
- master
|