pub.solar/.drone.yml

34 lines
592 B
YAML
Raw Normal View History

2021-06-06 16:18:43 +02:00
kind: pipeline
type: docker
name: default
2022-10-02 22:03:44 +02:00
2021-06-06 16:18:43 +02:00
steps:
2022-10-02 22:03:44 +02:00
- name: build
when:
event:
2022-10-02 22:08:09 +02:00
- push
- pull_request
2023-11-15 17:42:40 +01:00
image: denoland/deno:alpine-1.38.0
2022-10-02 22:03:44 +02:00
commands:
- deno task build
2021-06-06 16:18:43 +02:00
- name: publish
when:
event:
2022-10-02 22:08:09 +02:00
- push
2021-06-06 16:18:43 +02:00
branch:
- main
image: appleboy/drone-scp
settings:
2023-10-28 16:20:19 +02:00
host: nachtigall.pub.solar
port: 22
2021-06-06 16:18:43 +02:00
username:
from_secret: ps_ssh_user
key:
from_secret: ps_ssh_key
source:
2022-10-02 22:03:44 +02:00
- ./_site/*
target: /srv/www/pub.solar/
2022-02-24 23:06:59 +01:00
overwrite: true
2022-10-02 22:11:56 +02:00
strip_components: 1