galaxy/.drone.yml

93 lines
1.9 KiB
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
2020-06-03 23:08:15 +02:00
- name: markdownlint
image: node:lts-alpine
commands:
- npm install -g markdownlint-cli
- markdownlint 'content/**/*.md' 'README.md' -p .gitignore
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: spellcheck
image: node:lts-alpine
commands:
- npm install -g spellchecker-cli
- spellchecker --files 'content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: testbuild
image: klakegg/hugo:0.72.0-ext-alpine
commands:
- hugo-official -s -b http://localhost/
- name: link-validation
image: xoxys/link-validator
commands:
- link-validator -ro
environment:
LINK_VALIDATOR_BASE_DIR: public
2020-01-21 01:46:04 +01:00
- name: build
2020-06-03 23:08:15 +02:00
image: klakegg/hugo:0.72.0-ext-alpine
commands:
- hugo-official -s
- name: beautify
image: node:lts-alpine
2020-01-21 01:46:04 +01:00
commands:
2020-06-03 23:08:15 +02:00
- npm install -g js-beautify
- html-beautify -r -f 'public/**/*.html'
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
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
...