summaryrefslogtreecommitdiff
path: root/.drone.yml
blob: 8f459a177e9e26be9e2c2a5b0e0922bd7fea1b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
kind: pipeline
type: docker
name: build, publish docker image, deploy

steps:
  - name: docker
    image: plugins/docker
    settings:
      username:
        from_secret: gitea_packpub_username
      password:
        from_secret: gitea_packpub_password
      registry: git.hatecomputers.club
      repo: git.hatecomputers.club/hatecomputers/hatecomputers.club
      tags:
      - latest
      - main
  - name: ssh
    image: appleboy/drone-ssh
    settings:
      host: hatecomputers.club
      username: root
      key:
        from_secret: cd_ssh_key
      port: 22
      command_timeout: 2m
      script:
        - systemctl restart docker-compose@hatecomputers-club
trigger:
  branch:
  - main