From 719021b91c6bdfb25d7bc7f3274814a79a020703 Mon Sep 17 00:00:00 2001 From: qwerty287 <80460567+qwerty287@users.noreply.github.com> Date: Sun, 21 Apr 2024 18:51:08 +0200 Subject: [PATCH] Fix step syntax in docs (#3635) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some are not using array syntax yet… --- .../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 59ae06444..84f2b54f7 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 ```