From 7b6fb318d501c0971720e801d971a978b64fee1e Mon Sep 17 00:00:00 2001 From: Victoria <32179813+victoriafomina@users.noreply.github.com> Date: Fri, 14 Oct 2022 13:38:38 +0300 Subject: [PATCH] Fix the bug with `.` --- .../workflows/publish-plugin-and-cli-from-branch.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-plugin-and-cli-from-branch.yml b/.github/workflows/publish-plugin-and-cli-from-branch.yml index 72449e2ab3..53bac40c73 100644 --- a/.github/workflows/publish-plugin-and-cli-from-branch.yml +++ b/.github/workflows/publish-plugin-and-cli-from-branch.yml @@ -3,6 +3,12 @@ name: "[M] Plugin and CLI: publish as archives" on: workflow_call: inputs: + minor-release: + type: string + description: "It adds minor release indicator to version." + required: false + default: 'none' + version-postfix: type: string description: "It adds postfix (alpha or beta) to version (optional)." @@ -27,10 +33,10 @@ on: type: choice description: "It adds alpha or beta postfix to version." required: true - default: no-postfix + default: no-postfix-prod options: - - no-postfix - no-postfix-prod + - no-postfix - alpha - beta