From a34771b63c2960345d51672391c2745ba6ea88ac Mon Sep 17 00:00:00 2001 From: Adam Gardner <26523841+agardnerIT@users.noreply.github.com> Date: Wed, 2 Aug 2023 08:14:52 +1000 Subject: [PATCH] Update release-docs.yml Signed-off-by: Adam Gardner <26523841+agardnerIT@users.noreply.github.com> --- .github/workflows/release-docs.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/release-docs.yml b/.github/workflows/release-docs.yml index 0f11f5d..8d15cd2 100644 --- a/.github/workflows/release-docs.yml +++ b/.github/workflows/release-docs.yml @@ -22,6 +22,27 @@ on: type: "boolean" default: false required: false + workflow_dispatch: + inputs: + tag_name: + description: "Tag for the functions runner image / docs version" + type: "string" + required: true + page_dir: + description: "Root directory of the website" + type: "string" + required: false + default: "./tmp/page/" + docs_dir: + description: "Sub directory of documentation" + type: "string" + required: false + default: "./docs" + dry_run: + description: "Flag for testing" + type: "boolean" + default: false + required: false jobs: release-docs: