revert: it broke a lot and didn't fix anything

This commit is contained in:
Max Howell 2022-09-27 15:59:14 -04:00
parent cc1613c749
commit cbcca88711

View file

@ -35,17 +35,15 @@ const wet = await hydrate(dry, async (pkg, dry) => {
}) })
if (Deno.env.get("GITHUB_ACTIONS")) { if (Deno.env.get("GITHUB_ACTIONS")) {
const massage = (input: PackageRequirement[], with_raw = false) => const massage = (input: PackageRequirement[]) =>
input.map(p => { input.map(p => {
if (with_raw && p.constraint.raw) {
return `${p.project}@${p.constraint.raw}`
}
let out = pkg.str(p) let out = pkg.str(p)
// shell quoting via GHA is weird and we dont fully understand it
if (/[<>]/.test(out)) out = `"${out}"` if (/[<>]/.test(out)) out = `"${out}"`
return out return out
}).join(" ") }).join(" ")
console.log(`::set-output name=pkgs::${massage(wet.dry, true)}`) console.log(`::set-output name=pkgs::${massage(wet.dry)}`)
console.log(`::set-output name=pre-install::${massage(wet.wet)}`) console.log(`::set-output name=pre-install::${massage(wet.wet)}`)
} else { } else {
const gas = wet.dry.map(x => pkg.str(x)) const gas = wet.dry.map(x => pkg.str(x))