summaryrefslogtreecommitdiff
path: root/.drone.yml
blob: 205eb865b2657300a6559f9445f59b8bb857d152 (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: build
  image: fedora:39
  commands:
  - yum install --assumeyes openssh
  - sh deploy.sh
  environment:
    HOST:
      from_secret: HOST
    SSH_KEY:
      from_secret: SSH_KEY

trigger:
  branch:
  - main