You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/publish.yml
+13-18Lines changed: 13 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -1,27 +1,22 @@
1
-
name: Release
2
-
3
-
# Consolidated workflow because npm Trusted Publishers only allows ONE
4
-
# (repo, workflow, environment) tuple per package — so stable + channel
5
-
# must share a single workflow file.
1
+
name: Publish
6
2
7
3
on:
8
4
workflow_dispatch:
9
5
inputs:
10
6
mode:
11
-
description: "Release mode"
7
+
description: "Publish mode"
12
8
required: true
13
9
type: choice
14
10
options:
15
-
- stable
16
11
- channel
12
+
- stable
17
13
channel:
18
-
description: "dist-tag for channel mode (kebab-case, e.g. mcp/plugin/advisor). Reserved: latest/beta/alpha/next/rc/canary/dev. Ignored when mode=stable."
14
+
description: "dist-tag (channel mode only, e.g. mcp/plugin/advisor)"
19
15
required: false
20
16
type: string
21
17
22
-
# Serialize stable globally; serialize channel per dist-tag name.
0 commit comments