The Intentional Journal of the Tildeverse
https://journal.tildeverse.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
375 B
25 lines
375 B
--- |
|
kind: pipeline |
|
type: ssh |
|
name: deploy |
|
|
|
server: |
|
host: |
|
from_secret: host |
|
user: |
|
from_secret: username |
|
ssh_key: |
|
from_secret: ssh_key |
|
|
|
clone: |
|
disable: true |
|
|
|
trigger: |
|
branch: |
|
- master |
|
|
|
steps: |
|
- name: deploy |
|
commands: |
|
- sudo -Hu www-data git -C /var/www/journal.tildeverse.org pull --rebase origin master |
|
|
|
|