conference-site/.drone.yml

28 lines
624 B
YAML
Raw Normal View History

2024-03-01 20:27:27 +00:00
---
2022-03-10 22:49:01 +00:00
kind: pipeline
type: docker
name: default
steps:
2024-03-01 20:33:50 +00:00
- name: Build and publish
image: git.libreitalia.org/libreitalia/site-builder:1.0.0
2024-03-01 20:33:50 +00:00
environment:
HOSTNAME:
from_secret: conference_hostname
USERNAME:
from_secret: conference_username
PORT:
from_secret: conference_port
SSH_PRIVATE_KEY:
from_secret: conference_sshprivkey
commands:
2024-03-01 21:02:52 +00:00
- cd /app
- ./prepare.sh
2024-03-01 20:33:50 +00:00
- python3 -m venv venv --system-site-packages
- source venv/bin/activate
2024-03-01 21:02:52 +00:00
- cd /drone/src
2024-03-01 20:33:50 +00:00
- pip install -r requirements.txt
- make rsync_public
trigger: