main: container name is just package

This commit is contained in:
Dawid Dziurla 2020-03-26 17:45:58 +01:00 committed by GitHub
parent 52ad9cfd98
commit f235be040d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,7 @@ async function main() {
const match = changelog.match(regex)
const { package, version, revision, distribution } = match.groups
const os = await getOS(getDistribution(distribution))
const container = package + "_" + version
const container = package
const image = os + ":" + getDistribution(distribution)
fs.mkdirSync(artifactsDirectory, { recursive: true })