mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2026-04-19 18:29:51 +00:00
feat: add working dir
This commit is contained in:
parent
d9c764f106
commit
71260837fb
4 changed files with 34 additions and 9 deletions
|
|
@ -16,6 +16,9 @@ const inputs = require('./inputs.json');
|
|||
* @returns {Promise<void>}
|
||||
*/
|
||||
const release = async () => {
|
||||
if (core.getInput(inputs.working_directory)) {
|
||||
process.chdir(core.getInput(inputs.working_directory));
|
||||
}
|
||||
await setUpJob();
|
||||
await installSpecifyingVersionSemantic();
|
||||
await preInstall(core.getInput(inputs.extra_plugins));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue