Skip to content

Commit

Permalink
fix: fixes rebase mistake for import of renamed func
Browse files Browse the repository at this point in the history
  • Loading branch information
FlippAre committed Apr 30, 2020
1 parent 32db8a4 commit ddb8d28
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -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');
Expand All @@ -23,9 +23,9 @@ const release = async () => {

const semanticRelease = require('semantic-release');
const result = await semanticRelease({
...(handleBranchOption()),
...(handleDryRunOption()),
...(handleExtends()),
...handleBranchesOption(),
...handleDryRunOption(),
...handleExtends(),
});

await cleanupNpmrc();
Expand Down

0 comments on commit ddb8d28

Please sign in to comment.