Ensure packager creates a release folder (#28426)
I was screaming at the github actions runner before i noticed something i had done before caused me to never have a release folder and thus fail.
This commit is contained in:
parent
c4966e5177
commit
db6548bc99
1 changed files with 5 additions and 0 deletions
|
|
@ -11,6 +11,11 @@ if (!CommandLineArgs.TryParse(args, out var parsed))
|
|||
|
||||
if (parsed.WipeRelease)
|
||||
WipeRelease();
|
||||
else
|
||||
{
|
||||
// Ensure the release directory exists. Otherwise, the packaging will fail.
|
||||
Directory.CreateDirectory("release");
|
||||
}
|
||||
|
||||
if (!parsed.SkipBuild)
|
||||
WipeBin();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue