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 9c50bbb commit ebabf46Copy full SHA for ebabf46
release.config.mjs
@@ -57,9 +57,10 @@ const semanticReleaseConfig = {
57
},
58
],
59
[
60
- '@semantic-release/exec',
+ '@semantic-release/npm',
61
{
62
- publishCmd: './scripts/publish.sh ${nextRelease.version}',
+ npmPublish: false,
63
+ tarballDir: 'dist',
64
65
66
@@ -80,6 +81,12 @@ const semanticReleaseConfig = {
80
81
message: 'chore(release): ${nextRelease.version} [skip ci]',
82
83
84
+ [
85
+ '@semantic-release/exec',
86
+ {
87
+ publishCmd: './scripts/publish.sh ${nextRelease.version}',
88
+ },
89
+ ],
90
91
}
92
0 commit comments