From 9eeb0d8ac1d490973d46cca2af7acdca0e7c661e Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 12 Mar 2024 20:43:39 +0100 Subject: [PATCH] cleanup docs and examples --- docs/content/_index.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/content/_index.md b/docs/content/_index.md index 423fbde..8e8eff3 100644 --- a/docs/content/_index.md +++ b/docs/content/_index.md @@ -25,14 +25,11 @@ Only tag events are supported by this plugin. Running the plugin on other events {{< /hint >}} ```YAML -kind: pipeline -name: default - steps: - name: publish image: quay.io/thegeeklab/wp-gitea-release settings: - api_key: 3LbMg9Kncpdkhjp3bh3dMnKNXLjVMTsXk4sM + api_key: randomstring base_url: https://gitea.rknet.org files: build/* ``` @@ -64,7 +61,7 @@ docker build --file Containerfile.multiarch --tag thegeeklab/wp-gitea-release . ```Shell docker run --rm \ -e PLUGIN_BASE_URL=https://try.gitea.io \ - -e PLUGIN_API_KEY=your-api-key \ + -e PLUGIN_API_KEY=randomstring \ -e PLUGIN_FILES=build/* \ -e CI_REPO_OWNER=gitea \ -e CI_REPO_NAME=test \