-
Notifications
You must be signed in to change notification settings - Fork 28
Open
Description
It would be nice if instead of:
{
"@semantic-release/exec",
{
"prepareCmd": "sed -i 's/<version>/${nextRelease.version}/' package.json && npm run build && tar -czf my.tar.gz * && zip my.zip *"
}
}
You could specify an array of commands instead:
{
"@semantic-release/exec",
{
"prepareCmd": [
"sed -i 's/<version>/${nextRelease.version}/' package.json",
"npm run build",
"tar -czf my.tar.gz *",
"zip my.zip *"
]
}
}
imliuruiqi, richrdkng, alecarn, salzig, phbenisc and 2 more
Metadata
Metadata
Assignees
Labels
No labels