Skip to content

Commit b4b0c98

Browse files
committed
fix: try swap plugins order
1 parent 89f333c commit b4b0c98

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

adminforth/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,28 +26,28 @@
2626
},
2727
"release": {
2828
"plugins": [
29-
[
30-
"@semantic-release/exec",
31-
{
32-
"prepareCmd": "npm run build"
33-
}
34-
],
35-
"@semantic-release/commit-analyzer",
36-
"@semantic-release/release-notes-generator",
37-
"@semantic-release/npm",
38-
"@semantic-release/github",
3929
[
4030
"semantic-release-slack-bot",
4131
{
4232
"notifyOnSuccess": true,
33+
"notifyOnFail": true,
4334
"slackIcon": ":package:",
4435
"onSuccessTemplate": {
4536
"text": "$npm_package_version has been released!"
4637
},
47-
"markdownReleaseNotes": true,
48-
"notifyOnFail": true
38+
"markdownReleaseNotes": true
4939
}
50-
]
40+
],
41+
[
42+
"@semantic-release/exec",
43+
{
44+
"prepareCmd": "npm run build"
45+
}
46+
],
47+
"@semantic-release/commit-analyzer",
48+
"@semantic-release/release-notes-generator",
49+
"@semantic-release/npm",
50+
"@semantic-release/github"
5151
],
5252
"branches": [
5353
"main",

0 commit comments

Comments
 (0)