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/codeql-advanced.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ jobs:
60
60
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
Copy file name to clipboardExpand all lines: .github/workflows/npm_release_cli.yml
+43-22Lines changed: 43 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -11,15 +11,16 @@ on:
11
11
workflow_dispatch:
12
12
inputs:
13
13
release_type:
14
-
description: 'Release type. "dev" publishes a -next prerelease without bumping package.json. patch/minor/major/prerelease bump package.json, commit + tag to main, then publish as a stable release.'
15
-
type: choice
16
-
options:
17
-
- dev
18
-
- patch
19
-
- minor
20
-
- major
21
-
- prerelease
22
-
default: patch
14
+
description: >-
15
+
Release to cut. Leave empty for a rolling "next" prerelease (no version
16
+
bump). "dev" publishes a -dev prerelease (no bump). A semver keyword
17
+
(patch/minor/major) or an explicit version (e.g. 9.1.0, 9.1.0-alpha.1)
18
+
bumps package.json, commits + tags v<version>, then publishes a stable
19
+
release. A prerelease version publishes under the dist-tag matching its
20
+
prerelease id (alpha/beta/rc); a plain version publishes under "latest".
21
+
type: string
22
+
required: false
23
+
default: ''
23
24
24
25
permissions: read-all
25
26
@@ -39,16 +40,16 @@ jobs:
39
40
40
41
steps:
41
42
- name: Harden the runner (Audit all outbound calls)
0 commit comments