From a9809bae47940a47e70e48d554b58e5e59e434ce Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 12 Mar 2024 20:43:38 +0100 Subject: [PATCH] cleanup docs and examples --- docs/content/_index.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/content/_index.md b/docs/content/_index.md index 8e2d15f..d6170f9 100644 --- a/docs/content/_index.md +++ b/docs/content/_index.md @@ -21,9 +21,6 @@ Woodpecker CI plugin to manage infrastructure with [Ansible](https://github.com/ ## Usage ```YAML -kind: pipeline -name: default - steps: - name: ansible image: quay.io/thegeeklab/wp-ansible @@ -59,5 +56,10 @@ docker build --file Containerfile.multiarch --tag thegeeklab/wp-ansible . ## Test ```Shell - +docker run --rm \ + -e PLUGIN_PLAYBOOK=deployment/playbook.yml \ + -e PLUGIN_SYNTAX_CHECK=true \ + -v $(pwd):/build:z \ + -w /build \ + thegeeklab/wp-ansible ```