refactor docs
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2020-01-22 23:00:00 +01:00
parent 0b0f486432
commit 8760ee30a9
2 changed files with 54 additions and 28 deletions

View File

@ -28,39 +28,54 @@ local PipelineDocumentation = {
},
steps: [
{
name: 'ansible-doctor',
name: 'generate',
image: 'xoxys/ansible-doctor:latest',
environment: {
ANSIBLE_DOCTOR_LOG_LEVEL: 'INFO',
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true,
ANSIBLE_DOCTOR_EXCLUDE_FILES: 'molecule/',
ANSIBLE_DOCTOR_CUSTOM_HEADER: 'HEADER.md',
ANSIBLE_DOCTOR_TEMPLATE: 'hugo-book',
ANSIBLE_DOCTOR_ROLE_NAME: '${DRONE_REPO_NAME#*.}',
ANSIBLE_DOCTOR_OUTPUT_DIR: '_docs/',
},
},
{
name: 'push-to-repo',
image: 'plugins/git-action:latest',
name: 'publish',
image: 'plugins/gh-pages:latest',
settings: {
actions: ['commit', 'push'],
author_email: 'shipper@rknet.org',
author_name: 'DroneShipper',
branch: 'master',
message: '[SKIP CI] update readme',
remote_url: 'https://gitea.rknet.org/ansible/xoxys.update',
netrc_machine: 'gitea.rknet.org',
netrc_username: { from_secret: 'gitea_username' },
netrc_password: { from_secret: 'gitea_token' },
username: { from_secret: 'gitea_username' },
password: { from_secret: 'gitea_token' },
pages_directory: '_docs/',
target_branch: 'docs',
},
when: {
ref: ['refs/heads/master'],
},
},
{
name: 'trigger',
image: 'plugins/downstream',
settings: {
server: 'https://drone.rknet.org',
token: { from_secret: 'drone_token' },
fork: true,
repositories: [
'ansible/ansible-galaxy',
],
},
when: {
ref: ['refs/heads/master'],
},
},
],
depends_on: [
'linting',
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
},
depends_on: [
'linting',
],
};
local PipelineNotification = {

View File

@ -27,33 +27,44 @@ platform:
arch: amd64
steps:
- name: ansible-doctor
- name: generate
image: xoxys/ansible-doctor:latest
environment:
ANSIBLE_DOCTOR_CUSTOM_HEADER: HEADER.md
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
ANSIBLE_DOCTOR_OUTPUT_DIR: _docs/
ANSIBLE_DOCTOR_ROLE_NAME: ${DRONE_REPO_NAME#*.}
ANSIBLE_DOCTOR_TEMPLATE: hugo-book
- name: push-to-repo
image: plugins/git-action:latest
- name: publish
image: plugins/gh-pages:latest
settings:
actions:
- commit
- push
author_email: shipper@rknet.org
author_name: DroneShipper
branch: master
message: "[SKIP CI] update readme"
netrc_machine: gitea.rknet.org
netrc_password:
pages_directory: _docs/
password:
from_secret: gitea_token
netrc_username:
remote_url: https://gitea.rknet.org/ansible/xoxys.update
target_branch: docs
username:
from_secret: gitea_username
when:
ref:
- refs/heads/master
- name: trigger
image: plugins/downstream
settings:
fork: true
repositories:
- ansible/ansible-galaxy
server: https://drone.rknet.org
token:
from_secret: drone_token
when:
ref:
- refs/heads/master
trigger:
ref:
- refs/heads/master
@ -101,6 +112,6 @@ depends_on:
---
kind: signature
hmac: 8d1a5e1b51cf34515cebf444393c7735bb48a0cad184cb69ffafe8e1f678fd20
hmac: e90032260533df66c522bba3b688b73437ed1b04d83e190dab542b4c84a2d2b7
...