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 ffc8d33 commit e841243Copy full SHA for e841243
.github/workflows/release.yml
@@ -35,4 +35,4 @@ jobs:
35
env:
36
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
38
- run: npx semantic-release --dry-run
+ run: npx semantic-release
package.json
@@ -12,12 +12,21 @@
12
"clean": "del-cli ./lib",
13
"build": "npm run clean && tsc -p ./tsconfig.json",
14
"test": "node --experimental-strip-types --test",
15
- "semantic-release": "semantic-release --dry-run",
+ "semantic-release": "semantic-release",
16
"prepack": "npm run build"
17
},
18
"release": {
19
"branches": [
20
"main"
21
+ ],
22
+ "dryRun": true,
23
+ "plugins": [
24
+ [
25
+ "@semantic-release/npm",
26
+ {
27
+ "npmPublish": false
28
+ }
29
+ ]
30
]
31
32
"publishConfig": {
0 commit comments