cleanup docs and examples

This commit is contained in:
Robert Kaussow 2024-03-12 20:43:38 +01:00
parent af63f0ede2
commit a9809bae47
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
1 changed files with 6 additions and 4 deletions

View File

@ -21,9 +21,6 @@ Woodpecker CI plugin to manage infrastructure with [Ansible](https://github.com/
## Usage ## Usage
```YAML ```YAML
kind: pipeline
name: default
steps: steps:
- name: ansible - name: ansible
image: quay.io/thegeeklab/wp-ansible image: quay.io/thegeeklab/wp-ansible
@ -59,5 +56,10 @@ docker build --file Containerfile.multiarch --tag thegeeklab/wp-ansible .
## Test ## Test
```Shell ```Shell
docker run --rm \
-e PLUGIN_PLAYBOOK=deployment/playbook.yml \
-e PLUGIN_SYNTAX_CHECK=true \
-v $(pwd):/build:z \
-w /build \
thegeeklab/wp-ansible
``` ```