From ce803b732a91949e668e8c05ca529d8fe3974834 Mon Sep 17 00:00:00 2001 From: Ryan Cao <70191398+ryanccn@users.noreply.github.com> Date: Wed, 19 Jul 2023 12:24:57 +0800 Subject: [PATCH] fix: use node import behavior --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 170d4d2..b40f47a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ import { install } from "./stages/install"; import { configure } from "./stages/configure"; -import { push } from "./stages/push.ts"; +import { push } from "./stages/push"; import { getState, saveState } from "@actions/core"; const isPost = !!getState("isPost");