Skip to content

Commit f1bf4ad

Browse files
build(releaserc.json and package.json): deprecated gulp release notification plugin in favour of semantic release notify plugin
1 parent b6d2bf0 commit f1bf4ad

File tree

4 files changed

+773
-15
lines changed

4 files changed

+773
-15
lines changed

.releaserc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
[
1212
"@semantic-release/exec",
1313
{
14-
"prepareCmd": "./updateVersion.sh ${nextRelease.version} && gulp release",
15-
"successCmd": "gulp publishNotification --update \"${nextRelease.version}\" --type \"${nextRelease.type}\" --notes \"${encodeURIComponent(nextRelease.notes)}\""
14+
"prepareCmd": "./updateVersion.sh ${nextRelease.version} && gulp release"
1615
}
1716
],
1817
[
@@ -28,6 +27,7 @@
2827
]
2928
}
3029
],
30+
"semantic-release-teams-notify-plugin",
3131
[
3232
"@semantic-release/github",
3333
{

gulpfile.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,4 @@ function doZip(callback) {
7878

7979
exports.copy = series(doComposerUpdate, doDistClean, doCopyFiles);
8080

81-
exports.release = series(exports.copy, doZip, doFullClean);
82-
83-
// publish release notifications on Teams channel
84-
exports.publishNotification = require('rtldev-middleware-gulp-release-notification-plugin');
81+
exports.release = series(exports.copy, doZip, doFullClean);

0 commit comments

Comments
 (0)