forked from waja/action-debian-package
Compare commits
1 commit
b861b80ec6
...
4c653c8981
Author | SHA1 | Date | |
---|---|---|---|
|
4c653c8981 |
7
main.js
7
main.js
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue