Don't call the telemetry pre-hook entrypoint

This commit is contained in:
Jess Bees
2022-03-23 14:22:16 -04:00
parent 479e82243a
commit e1279a88ef
2 changed files with 1 additions and 2 deletions

View File

@@ -3,7 +3,6 @@ description: 'A GitHub Action to deploy an artifact to GitHub Pages'
runs:
using: 'node16'
main: 'dist/index.js'
pre: 'pre/index.js'
inputs:
token:
description: 'GitHub token'

View File

@@ -52,4 +52,4 @@ process.on('SIGINT', cancelHandler)
process.on('SIGTERM', cancelHandler)
// Main
main().then(() => require('./pre'))
main()