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.sys42.eu/syntaxerrormmm/pelican-base:1.0.0
|
|
|
|
environment:
|
|
|
|
HOSTNAME:
|
|
|
|
from_secret: conference_hostname
|
|
|
|
USERNAME:
|
|
|
|
from_secret: conference_username
|
|
|
|
PORT:
|
|
|
|
from_secret: conference_port
|
|
|
|
SSH_PRIVATE_KEY:
|
|
|
|
from_secret: conference_sshprivkey
|
|
|
|
commands:
|
|
|
|
- pushd ~
|
|
|
|
- ./prepare.sh
|
|
|
|
- python3 -m venv venv --system-site-packages
|
|
|
|
- source venv/bin/activate
|
|
|
|
- popd
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
- make rsync_public
|
2024-03-01 02:08:42 +00:00
|
|
|
|
|
|
|
trigger:
|
2024-03-01 20:28:07 +00:00
|
|
|
branch:
|
2024-03-01 20:33:50 +00:00
|
|
|
- master
|
2024-03-01 02:08:42 +00:00
|
|
|
event:
|
2024-03-01 20:33:50 +00:00
|
|
|
- push
|
2024-03-01 20:50:13 +00:00
|
|
|
- custom
|