Skip to content

Commit 0c5374e

Browse files
Remove redundant . in published artifacts (#1159)
Fix the bug with `.`
1 parent e77dcf0 commit 0c5374e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/publish-plugin-and-cli-from-branch.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name: "[M] Plugin and CLI: publish as archives"
33
on:
44
workflow_call:
55
inputs:
6+
minor-release:
7+
type: string
8+
description: "It adds minor release indicator to version."
9+
required: false
10+
default: 'none'
11+
612
version-postfix:
713
type: string
814
description: "It adds postfix (alpha or beta) to version (optional)."
@@ -27,10 +33,10 @@ on:
2733
type: choice
2834
description: "It adds alpha or beta postfix to version."
2935
required: true
30-
default: no-postfix
36+
default: no-postfix-prod
3137
options:
32-
- no-postfix
3338
- no-postfix-prod
39+
- no-postfix
3440
- alpha
3541
- beta
3642

0 commit comments

Comments
 (0)