forked from waja/action-debian-package
main: run debi and debc
This commit is contained in:
parent
27df2d7538
commit
75e45aab50
20
main.js
20
main.js
|
@ -128,7 +128,7 @@ async function main() {
|
|||
])
|
||||
core.endGroup()
|
||||
|
||||
core.startGroup("Build package")
|
||||
core.startGroup("Build packages")
|
||||
await exec.exec("docker", [
|
||||
"exec",
|
||||
container,
|
||||
|
@ -136,7 +136,23 @@ async function main() {
|
|||
])
|
||||
core.endGroup()
|
||||
|
||||
core.startGroup("Move artifacts")
|
||||
core.startGroup("Install built packages")
|
||||
await exec.exec("docker", [
|
||||
"exec",
|
||||
container,
|
||||
"debi", "--with-depends"
|
||||
])
|
||||
core.endGroup()
|
||||
|
||||
core.startGroup("List packages contents")
|
||||
await exec.exec("docker", [
|
||||
"exec",
|
||||
container,
|
||||
"debc"
|
||||
])
|
||||
core.endGroup()
|
||||
|
||||
core.startGroup("Move build artifacts")
|
||||
await exec.exec("docker", [
|
||||
"exec",
|
||||
container,
|
||||
|
|
Loading…
Reference in a new issue