aboutsummaryrefslogtreecommitdiffstats
path: root/packages/subproviders/scripts/postpublish.js
blob: 7fa452b081e5667ad5449b23dbaecdd09dad1dc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const postpublish_utils = require('../../../scripts/postpublish_utils');
const packageJSON = require('../package.json');

const subPackageName = packageJSON.name;

postpublish_utils.getLatestTagAndVersionAsync(subPackageName)
    .then(function(result) {
        const releaseName = postpublish_utils.getReleaseName(subPackageName, result.version);
        const assets = [];
        return postpublish_utils.publishReleaseNotes(result.tag, releaseName, assets);
    })
    .catch (function(err) {
        throw err;
    });