mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2025-11-07 10:46:56 +00:00
fix: fixes rebase mistake for import of renamed func
This commit is contained in:
parent
32db8a49b2
commit
ddb8d2814d
1 changed files with 5 additions and 5 deletions
10
src/index.js
10
src/index.js
|
|
@ -1,8 +1,8 @@
|
||||||
const core = require('@actions/core');
|
const core = require('@actions/core');
|
||||||
const {
|
const {
|
||||||
handleBranchOption,
|
handleBranchesOption,
|
||||||
handleDryRunOption,
|
handleDryRunOption,
|
||||||
handleExtends
|
handleExtends,
|
||||||
} = require('./handleOptions');
|
} = require('./handleOptions');
|
||||||
const setUpJob = require('./setUpJob.task');
|
const setUpJob = require('./setUpJob.task');
|
||||||
const installSpecifyingVersionSemantic = require('./installSpecifyingVersionSemantic.task');
|
const installSpecifyingVersionSemantic = require('./installSpecifyingVersionSemantic.task');
|
||||||
|
|
@ -23,9 +23,9 @@ const release = async () => {
|
||||||
|
|
||||||
const semanticRelease = require('semantic-release');
|
const semanticRelease = require('semantic-release');
|
||||||
const result = await semanticRelease({
|
const result = await semanticRelease({
|
||||||
...(handleBranchOption()),
|
...handleBranchesOption(),
|
||||||
...(handleDryRunOption()),
|
...handleDryRunOption(),
|
||||||
...(handleExtends()),
|
...handleExtends(),
|
||||||
});
|
});
|
||||||
|
|
||||||
await cleanupNpmrc();
|
await cleanupNpmrc();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue