hatecomputers.club/.drone.yml

44 lines
816 B
YAML
Raw Normal View History

2024-03-26 18:00:05 -04:00
---
kind: pipeline
type: docker
2024-04-02 18:32:03 -04:00
name: deployment
2024-03-26 18:00:05 -04:00
steps:
2024-04-02 18:32:03 -04:00
- name: run tests
image: golang
commands:
- go build
- go test -v ./...
- 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
2024-04-02 18:32:03 -04:00
when:
branch:
- 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
2024-04-02 18:32:03 -04:00
when:
branch:
- main
2024-03-26 18:00:05 -04:00
trigger:
branch:
2024-04-02 18:32:03 -04:00
- main