Skip to content

Commit fb0330f

Browse files
committed
upgrading publish wf
1 parent 291409d commit fb0330f

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,23 @@ on:
44
workflow_dispatch:
55
inputs:
66
semver:
7-
description: "The semantic version to bump (patch, minor, major)"
7+
description: "The semantic version to bump"
88
required: true
9+
type: choice
10+
options:
11+
- patch
12+
- minor
13+
- major
914
default: "patch"
1015
nodeVersion:
1116
description: "The Node.js version to use"
1217
required: true
13-
default: "16.x"
18+
type: choice
19+
options:
20+
- "18.x"
21+
- "20.x"
22+
- "22.x"
23+
default: "20.x"
1424

1525
jobs:
1626
release:

0 commit comments

Comments
 (0)