Add "release:ancillary" target so the releasing pipeline could be broken into two large pieces
This commit is contained in:
parent
7f4bdc294b
commit
37ecd7354d
1 changed files with 5 additions and 1 deletions
|
@ -1184,9 +1184,13 @@ const CleanDist = task(`clean-dist`, async () => {
|
|||
});
|
||||
|
||||
const Release = task(`release`, async target => {
|
||||
await target.need(ReleaseArchives, SampleImages, Pages, AmendReadme, ReleaseNotes, ChangeLog);
|
||||
await target.need(ReleaseAncillary);
|
||||
await target.need(ReleaseArchives);
|
||||
});
|
||||
|
||||
const ReleaseAncillary = task(`release:ancillary`, async target => {
|
||||
await target.need(SampleImages, Pages, AmendReadme, ReleaseNotes, ChangeLog);
|
||||
});
|
||||
const ReleaseArchives = task(`release:archives`, async target => {
|
||||
const [collectPlans] = await target.need(CollectPlans, UtilScriptFiles);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue