Build packages in correct container

This commit is contained in:
Radon Rosborough 2021-01-01 01:02:56 -08:00
parent 8455d259c0
commit 0f6d1d9923
1 changed files with 3 additions and 1 deletions

View File

@ -97,7 +97,9 @@ async function planDebianPackages(opts) {
await runCommand(`make download L=${lang} T=${type}`);
},
build: async () => {
await runCommand(`make pkg L=${lang} T=${type}`);
await runCommand(
`make shell I=packaging CMD="make pkg L=${lang} T=${type}"`
);
},
upload: async () => {
await runCommand(`make upload L=${lang} T=${type}`);