From 1f53da1a00dd6077ef4c969b1133fcba42999b40 Mon Sep 17 00:00:00 2001 From: qwerty287 <80460567+qwerty287@users.noreply.github.com> Date: Wed, 8 Jan 2025 17:51:40 +0200 Subject: [PATCH] Fix CLI secrets examples (#4685) --- docs/docs/20-usage/40-secrets.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/docs/20-usage/40-secrets.md b/docs/docs/20-usage/40-secrets.md index 8666b7881..059bb52dd 100644 --- a/docs/docs/20-usage/40-secrets.md +++ b/docs/docs/20-usage/40-secrets.md @@ -104,7 +104,7 @@ Create the secret using default settings. The secret will be available to all images in your pipeline, and will be available to all `push`, `tag`, and `deployment` events (not `pull_request` events). ```bash -woodpecker-cli secret add \ +woodpecker-cli repo secret add \ --repository octocat/hello-world \ --name aws_access_key_id \ --value @@ -115,7 +115,7 @@ Create the secret and limit it to a single image: ```diff woodpecker-cli secret add \ --repository octocat/hello-world \ -+ --image plugins/s3 \ ++ --image woodpeckerci/plugin-s3 \ --name aws_access_key_id \ --value ``` @@ -123,10 +123,10 @@ Create the secret and limit it to a single image: Create the secrets and limit it to a set of images: ```diff - woodpecker-cli secret add \ + woodpecker-cli repo secret add \ --repository octocat/hello-world \ -+ --image plugins/s3 \ -+ --image woodpeckerci/plugin-ecs \ ++ --image woodpeckerci/plugin-s3 \ ++ --image woodpeckerci/plugin-docker-buildx \ --name aws_access_key_id \ --value ``` @@ -134,9 +134,9 @@ Create the secrets and limit it to a set of images: Create the secret and enable it for multiple hook events: ```diff - woodpecker-cli secret add \ + woodpecker-cli repo secret add \ --repository octocat/hello-world \ - --image plugins/s3 \ + --image woodpeckerci/plugin-s3 \ + --event pull_request \ + --event push \ + --event tag \ @@ -149,7 +149,7 @@ This method is recommended for loading secrets from a file, as it ensures that n Here’s an example: ```diff - woodpecker-cli secret add \ + woodpecker-cli repo secret add \ -repository octocat/hello-world \ -name ssh_key \ + -value @/root/ssh/id_rsa