Add Drone CI

This commit is contained in:
nemunaire 2020-11-13 10:20:22 +01:00
parent c2d4026a86
commit 16c5d728d1
1 changed files with 47 additions and 0 deletions

47
.drone.yml Normal file
View File

@ -0,0 +1,47 @@
---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: arm64
clone:
disable: true
steps:
- name: clone
image: alpine
commands:
- apk add --no-cache git
- git clone --recursive $DRONE_GIT_HTTP_URL .
- git checkout $DRONE_COMMIT
- name: build
image: plugins/hugo
settings:
hugo_version: 0.70.0
validate: true
- name: deploy
image: appleboy/drone-scp
settings:
debug: true
tar_tmp_path: /tmp/
host: srs.nemunai.re
target: /var/www/nemunai.re/srs/fic/
source: public/*
strip_components: 1
username:
from_secret: ssh_username
key:
from_secret: deploy_key
port:
from_secret: ssh_port
when:
branch:
- master
event:
exclude:
- pull_request