sparse-intern-71089
09/15/2020, 9:15 PMsome-flower-64874
09/16/2020, 7:06 AMgo build
since I would expect build/package to be a step or two before and to be able to use Pulumi to deploy the same package to multiple environments (e.g. dev -> test -> stage -> prod ) without a rebuild.
That though is full of my assumptions about the way the world should work...millions-judge-24978
09/16/2020, 3:10 PMmillions-judge-24978
09/16/2020, 3:11 PMconst build: pulumi.Input<void> = (async () => {
await execa.command('make lambda-zip', { cwd: '..' })
})()
where that make target does the go build
some-flower-64874
09/17/2020, 7:21 AM