Alcuni aggiustamenti per automatizzazione.
This commit is contained in:
parent
057a834b32
commit
36b31b458d
23
.drone.yml
23
.drone.yml
|
@ -3,7 +3,24 @@ type: docker
|
|||
name: default
|
||||
|
||||
steps:
|
||||
- name: greeting
|
||||
image: alpine
|
||||
- name: Build and publish
|
||||
image: git.sys42.eu/syntaxerrormmm/pelican-base:1.0.0
|
||||
environment:
|
||||
HOSTNAME:
|
||||
from_secret: conference_hostname
|
||||
USERNAME:
|
||||
from_secret: conference_username
|
||||
PORT:
|
||||
from_secret: conference_port
|
||||
commands:
|
||||
- echo hello
|
||||
- pushd ~
|
||||
- ./prepare.sh
|
||||
- python3 -m venv venv --system-site-packages
|
||||
- source venv/bin/activate
|
||||
- popd
|
||||
- pip install -r requirements.txt
|
||||
- make rsync_public
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
|
|
Loading…
Reference in New Issue