From 4157deb16666c1b6164865195df40a6b944feba7 Mon Sep 17 00:00:00 2001 From: qwerty287 <80460567+qwerty287@users.noreply.github.com> Date: Sun, 21 Apr 2024 13:22:38 +0200 Subject: [PATCH] Fix step syntax in docs --- .../versioned_docs/version-2.4/20-usage/20-workflow-syntax.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/versioned_docs/version-2.4/20-usage/20-workflow-syntax.md b/docs/versioned_docs/version-2.4/20-usage/20-workflow-syntax.md index 59ae06444c..84f2b54f74 100644 --- a/docs/versioned_docs/version-2.4/20-usage/20-workflow-syntax.md +++ b/docs/versioned_docs/version-2.4/20-usage/20-workflow-syntax.md @@ -640,7 +640,7 @@ You can manually configure the clone step in your workflow for customization: ```diff +clone: -+ git: ++ - name: git + image: woodpeckerci/plugin-git steps: @@ -666,7 +666,7 @@ Example configuration to use a custom clone plugin: ```diff clone: - git: + - name: git + image: octocat/custom-git-plugin ```