14 lines
189 B
YAML
14 lines
189 B
YAML
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: build
|
||
|
trigger:
|
||
|
event:
|
||
|
- push
|
||
|
branch:
|
||
|
- senpai
|
||
|
steps:
|
||
|
- name: test-build
|
||
|
image: asciidoctor/docker-asciidoctor
|
||
|
commands:
|
||
|
- asciidoctor *.adoc
|