From 42976755bc1a5e38051e756e3a2344ea8f354379 Mon Sep 17 00:00:00 2001 From: cycjimmy Date: Tue, 19 Mar 2024 22:06:01 +0800 Subject: [PATCH] fix: fix syntax error for importing --- src/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 095a5f85..a8c64c8a 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,3 @@ -import { handleRepositoryUrlOption } from './handleOptions'; - const core = require('@actions/core'); const { handleBranchesOption, @@ -7,6 +5,7 @@ const { handleCiOption, handleExtends, handleTagFormat, + handleRepositoryUrlOption, } = require('./handleOptions'); const setUpJob = require('./setUpJob.task'); const installSpecifyingVersionSemantic = require('./installSpecifyingVersionSemantic.task');