From ddb8d2814d0253519aec32bec92600fc9fc9a305 Mon Sep 17 00:00:00 2001 From: Filip Arenbo Date: Thu, 30 Apr 2020 09:56:34 +0200 Subject: [PATCH] fix: fixes rebase mistake for import of renamed func --- src/index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/index.js b/src/index.js index 3b89620..e512819 100644 --- a/src/index.js +++ b/src/index.js @@ -1,8 +1,8 @@ const core = require('@actions/core'); const { - handleBranchOption, + handleBranchesOption, handleDryRunOption, - handleExtends + handleExtends, } = require('./handleOptions'); const setUpJob = require('./setUpJob.task'); const installSpecifyingVersionSemantic = require('./installSpecifyingVersionSemantic.task'); @@ -23,9 +23,9 @@ const release = async () => { const semanticRelease = require('semantic-release'); const result = await semanticRelease({ - ...(handleBranchOption()), - ...(handleDryRunOption()), - ...(handleExtends()), + ...handleBranchesOption(), + ...handleDryRunOption(), + ...handleExtends(), }); await cleanupNpmrc();