galaxy/.drone.yml

93 lines
2.0 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
2020-11-29 21:57:15 +01:00
image: thegeeklab/alpine-tools
2020-01-21 01:46:04 +01:00
commands:
2020-01-22 11:59:58 +01:00
- mkdir -p themes/hugo-geekdoc/
2020-11-29 21:57:15 +01:00
- curl -sSL https://github.com/thegeeklab/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
2020-09-27 23:00:39 +02:00
image: thegeeklab/git-batch
2020-01-21 01:46:04 +01:00
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
2020-06-07 17:41:22 +02:00
- spellchecker --no-gitignore --files 'content/**/_index.md' 'README.md' '!content/filters/*' '!content/modules/*' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions
2020-06-03 23:08:15 +02:00
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: testbuild
2020-08-01 20:24:10 +02:00
image: klakegg/hugo:0.74.3-ext-alpine
2020-06-03 23:08:15 +02:00
commands:
2020-06-03 23:32:36 +02:00
- hugo-official -b http://localhost/
2020-06-03 23:08:15 +02:00
- name: link-validation
2020-09-27 23:00:39 +02:00
image: thegeeklab/link-validator
2020-06-03 23:08:15 +02:00
commands:
- link-validator -ro
environment:
LINK_VALIDATOR_BASE_DIR: public
2020-01-21 01:46:04 +01:00
- name: build
2020-08-01 20:24:10 +02:00
image: klakegg/hugo:0.74.3-ext-alpine
2020-06-03 23:08:15 +02:00
commands:
2020-06-03 23:32:36 +02:00
- hugo-official
2020-06-03 23:08:15 +02:00
- 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-11-29 21:57:15 +01:00
hmac: e7012916cab31a75c05e00afe83fea803df3749200eec632c78b170f2d7120da
2020-01-21 01:46:04 +01:00
...