Compare commits

...

1 commit

Author SHA1 Message Date
Jan Wagner 4c653c8981 Going wild 2024-01-06 21:13:31 +01:00

View file

@ -68,8 +68,8 @@ async function main() {
const match = changelog.match(regex) const match = changelog.match(regex)
const { pkg, epoch, version, revision, packageDistribution } = match.groups const { pkg, epoch, version, revision, packageDistribution } = match.groups
const distribution = osDistribution ? osDistribution : packageDistribution const distribution = osDistribution ? osDistribution : packageDistribution
const imageName = await getImageName(distribution) const imageName = "ubuntu"
const imageTag = await getImageTag(imageName, distribution) const imageTag = "stable"
const container = pkg const container = pkg
const image = imageName + ":" + imageTag const image = imageName + ":" + imageTag
@ -145,7 +145,7 @@ async function main() {
container container
]) ])
core.endGroup() core.endGroup()
/*
core.startGroup("Prepare environment") core.startGroup("Prepare environment")
await exec.exec("docker", [ await exec.exec("docker", [
"exec", "exec",
@ -284,6 +284,7 @@ async function main() {
"-exec", "mv", "{}", artifactsDirectory, ";" "-exec", "mv", "{}", artifactsDirectory, ";"
]) ])
core.endGroup() core.endGroup()
*/
} catch (error) { } catch (error) {
core.setFailed(error.message) core.setFailed(error.message)
} }