|
@@ -108,7 +108,9 @@ runs:
|
|
|
if [ "${{ inputs.target-platform }}" = "win" ]; then
|
|
|
cd out/Default
|
|
|
powershell Compress-Archive -update mksnapshot_args mksnapshot.zip
|
|
|
- powershell Compress-Archive -update gen/v8/embedded.S mksnapshot.zip
|
|
|
+ powershell mkdir mktmp\\gen\\v8
|
|
|
+ powershell Copy-Item gen\\v8\\embedded.S mktmp\\gen\\v8
|
|
|
+ powershell Compress-Archive -update -Path mktmp\\gen mksnapshot.zip
|
|
|
else
|
|
|
(cd out/Default; zip mksnapshot.zip mksnapshot_args gen/v8/embedded.S)
|
|
|
fi
|