uci-doc/.drone.yml

85 lines
1.6 KiB
YAML
Raw Normal View History

2020-01-12 07:09:50 -08:00
---
kind: pipeline
name: build
2020-01-12 07:13:37 -08:00
platform:
os: linux
arch: amd64
2020-01-12 07:09:50 -08:00
steps:
- name: assets
image: node
commands:
- npm install -g gulp -s
- npm install -s
- gulp default
- name: test
image: klakegg/hugo:0.59.1-ext-alpine
commands:
2020-01-12 07:44:10 -08:00
- cd exampleSite/ && ln -s ../../. themes/hugo-geekdoc && hugo-official
2020-01-12 07:09:50 -08:00
- name: build
image: alpine
commands:
- mkdir dist/
- tar -zcvf dist/hugo-geekdoc.tar.gz . --exclude='.git*' --exclude='.drone*' --exclude='dist' --exclude='.git*' --exclude='example*' --exclude='src' --exclude='gulp*' --exclude='package*' --exclude='node*'
2020-01-12 07:09:50 -08:00
- name: checksum
image: alpine
commands:
2020-01-12 07:13:37 -08:00
- cd dist/ && sha256sum * > ../sha256sum.txt
2020-01-12 07:44:10 -08:00
- cd ../ && ls -lh dist/
2020-01-12 07:18:28 -08:00
- cat sha256sum.txt
2020-01-12 07:09:50 -08:00
- name: publish
image: plugins/github-release
settings:
api_key:
from_secret: github_token
files:
2020-01-12 07:13:37 -08:00
- dist/*
2020-01-12 07:09:50 -08:00
- sha256sum.txt
note: CHANGELOG.md
overwrite: true
2020-01-12 07:13:37 -08:00
title: ${DRONE_TAG}
2020-01-12 07:09:50 -08:00
when:
ref:
2020-01-12 07:13:37 -08:00
- refs/tags/**
2020-01-12 07:09:50 -08:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
- refs/pull/**
2020-01-12 07:13:37 -08:00
2020-01-12 07:44:10 -08:00
---
kind: pipeline
name: docs
platform:
os: linux
arch: amd64
steps:
- name: assets
image: alpine
commands:
- mkdir -p exampleSite/themes/hugo-geekdoc/
- curl -L https://github.com/xoxys/hugo-geekdoc/tarball/master | tar -xz -C exampleSite/themes/hugo-geekdoc/ --strip-components=1
- name: test
image: klakegg/hugo:0.59.1-ext-alpine
commands:
- cd exampleSite/ && hugo-official
trigger:
ref:
- refs/heads/master
2020-01-12 07:13:37 -08:00
---
kind: signature
2020-01-12 07:44:10 -08:00
hmac: 045e419a618003df0ea0a85de97a8152d88192a7b9e6f5ad8ba2701913e6288f
2020-01-12 07:13:37 -08:00
...