summaryrefslogtreecommitdiff
path: root/.drone.yml
blob: baf141555ff6249b0d7ec9f8178e88923c306794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
kind: pipeline
type: docker
name: default

steps:
- name: deploy
  image: fedora:39
  commands:
  - yum install --assumeyes openssh-clients rsync
  - sh deploy.sh
  environment:
    HOST:
      from_secret: HOST
    SSH_KEY:
      from_secret: SSH_KEY

trigger:
  branch:
  - master