forked from waja/action-debian-package
Merge pull request #73 from dawidd6/tar-orig
main: use tar for upstream orig archive generation
This commit is contained in:
commit
4fd2008fd6
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
||||||
- package: at
|
- package: at
|
||||||
arch: arm
|
arch: arm
|
||||||
repo: https://salsa.debian.org/debian/at.git
|
repo: https://salsa.debian.org/debian/at.git
|
||||||
ref: debian/3.1.23-1
|
ref: debian/3.2.2-1
|
||||||
lintian_opts: "-v"
|
lintian_opts: "-v"
|
||||||
lintian_run: false
|
lintian_run: false
|
||||||
- package: lolcat
|
- package: lolcat
|
||||||
|
|
10
main.js
10
main.js
|
@ -183,8 +183,14 @@ async function main() {
|
||||||
await exec.exec("docker", [
|
await exec.exec("docker", [
|
||||||
"exec",
|
"exec",
|
||||||
container,
|
container,
|
||||||
"git-deborig",
|
"tar",
|
||||||
"HEAD"
|
"--exclude-vcs",
|
||||||
|
"--exclude=debian",
|
||||||
|
"--create",
|
||||||
|
"--gzip",
|
||||||
|
"--verbose",
|
||||||
|
`--file=../${pkg}_${version}.orig.tar.gz`,
|
||||||
|
"."
|
||||||
])
|
])
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue