refactor(docker): set newValue to version not version-suffix

This commit is contained in:
Rhys Arkins 2018-06-29 17:15:27 +02:00
parent 103f54402e
commit 02b79b96b0

View file

@ -121,7 +121,7 @@ async function getPackageUpdates(config) {
const newVersion = versionUpgrades[upgradeKey];
upgrade.newMajor = `${getMajor(newVersion)}`;
upgrade.newTag = tagSuffix ? `${newVersion}-${tagSuffix}` : newVersion;
upgrade.newValue = upgrade.newTag;
upgrade.newValue = newVersion;
upgrade.newDepTag = `${config.depName}:${upgrade.newTag}`;
if (dockerRegistry) {
upgrade.newFrom = `${dockerRegistry}/`;