We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3a0e21 commit 79af469Copy full SHA for 79af469
.github/workflows/checks.yml
@@ -12,7 +12,7 @@ jobs:
12
os: [ubuntu-latest, windows-latest]
13
node-version:
14
- 20.x
15
- - 21.x
+ - 22.x
16
steps:
17
- uses: actions/checkout@v4
18
- name: Use Node.js ${{ matrix.node-version }}
.github/workflows/release.yml
@@ -9,7 +9,7 @@ on:
9
description: "Type of release: major, minor, or patch"
10
required: true
11
default: "patch"
-
+
permissions:
contents: write
id-token: write
@@ -45,7 +45,7 @@ jobs:
45
- name: Install dependencies
46
run: npm install
47
- name: Publish package
48
- run: npm run release -- --ci
+ run: npm run release -- --ci --release-as ${{ github.event.inputs.release_type }}
49
env:
50
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
51
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments