Remove the support for older dynamic jekyll workflows

The pages dynamic workflow now decouples telemetry from deploy for 100%
of users, so we can remove this old conditional.
This commit is contained in:
Jess Bees
2022-04-04 16:12:33 -04:00
parent eaf36f48c9
commit 62c650c70d
4 changed files with 4 additions and 9 deletions

View File

@@ -55,9 +55,6 @@ process.on('SIGTERM', cancelHandler)
const emitTelemetry = core.getInput("emit_telemetry")
if (emitTelemetry === "true") {
require('./pre')
} else if (emitTelemetry === "false") {
main()
} else {
// If emit_telemetry is not set, that indicates an older version of the dynamic workflow that doesn't separate telemetry from deployment
main().then(() => require('./pre'))
main()
}