galaxy/.drone.yml

54 lines
984 B
YAML
Raw Normal View History

2020-01-21 01:46:04 +01:00
---
kind: pipeline
name: default
2020-05-25 19:40:39 +02:00
platform:
os: linux
arch: amd64
2020-01-21 01:46:04 +01:00
concurrency:
limit: 1
steps:
- name: assets
image: byrnedo/alpine-curl
commands:
2020-01-22 11:59:58 +01:00
- mkdir -p themes/hugo-geekdoc/
- curl -L https://github.com/xoxys/hugo-geekdoc/releases/latest/download/hugo-geekdoc.tar.gz | tar -xz -C themes/hugo-geekdoc/ --strip-components=1
2020-01-21 01:46:04 +01:00
- name: sync
image: xoxys/git-batch:latest
commands:
2020-05-25 19:40:39 +02:00
- git-batch
2020-01-21 01:46:04 +01:00
- name: build
2020-04-15 01:24:39 +02:00
image: klakegg/hugo:0.69.0-ext-alpine
2020-01-21 01:46:04 +01:00
commands:
2020-05-25 19:40:39 +02:00
- hugo-official
2020-01-21 01:46:04 +01:00
- name: publish
2020-05-25 20:54:19 +02:00
image: plugins/s3-sync
2020-01-21 01:46:04 +01:00
settings:
2020-05-25 19:40:39 +02:00
access_key:
from_secret: s3_access_key
bucket: geekdocs
delete: true
endpoint: https://sp.rknet.org
path_style: true
secret_key:
from_secret: s3_secret_access_key
2020-05-25 20:59:20 +02:00
source: public/
2020-05-25 19:46:34 +02:00
strip_prefix: public/
2020-05-25 19:44:21 +02:00
target: /${DRONE_REPO_NAME}
2020-01-21 01:46:04 +01:00
trigger:
ref:
2020-01-21 01:48:38 +01:00
- refs/heads/master
2020-01-21 01:46:04 +01:00
- refs/pull/**
2020-05-25 19:40:39 +02:00
2020-01-21 01:46:04 +01:00
---
kind: signature
2020-05-25 20:59:20 +02:00
hmac: 98c323bb0c6eaf52d4e9f6928f43a94e5cbb2b273e8298e3f788d200837a8a48
2020-01-21 01:46:04 +01:00
...