Skip to content

Commit d666af7

Browse files
committed
release: remove debug output, finalize script
1 parent 9cb5307 commit d666af7

2 files changed

Lines changed: 1 addition & 8 deletions

File tree

Jenkinsfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ pipeline {
157157
sh '''
158158
git checkout $BRANCH
159159
git pull
160-
printenv
161160
yarn release:prepare
162161
yarn release --branch $BRANCH
163162
'''

release.config.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const successComment = release_comment === "true"
33
? ":tada: This issue has been resolved in version ${nextRelease.version} :tada:\n\nThe release is available on [GitHub release](<github_release_url>)"
44
: false;
55

6-
const config = {
6+
module.exports = {
77
repositoryUrl: "https://github.com/asterics/WebACS",
88
tagFormat: "v${version}",
99
plugins: [
@@ -59,9 +59,3 @@ const config = {
5959
dryRun: false,
6060
ci: false
6161
};
62-
63-
console.log(release_comment);
64-
console.log(successComment);
65-
console.log(JSON.stringify(config,null,4));
66-
67-
module.exports = config;

0 commit comments

Comments
 (0)