File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 66namespace Deploy . Steps ;
77
88[ DependsOnStep < RestoreAndBuildStep > ]
9+ [ DependsOnStep < CreateMacosRelease > ]
910public class CreateLinuxRelease : IStep
1011{
1112 public async Task < BufferedCommandResult ? [ ] ? > RunStep ( CancellationToken cancellationToken )
@@ -19,7 +20,7 @@ public class CreateLinuxRelease : IStep
1920
2021 var godotExportResult = await PipelineCliHelper . RunCliCommandAsync (
2122 "godot" ,
22- $ "--headless --verbose --export-release Windows --project { godotProjectFile . GetFullNameUnix ( ) } ",
23+ $ "--headless --verbose --export-release Linux --project { godotProjectFile . GetFullNameUnix ( ) } ",
2324 cancellationToken
2425 ) ;
2526
Original file line number Diff line number Diff line change 66namespace Deploy . Steps ;
77
88[ DependsOnStep < RestoreAndBuildStep > ]
9+ [ DependsOnStep < CreateWindowsRelease > ]
910public class CreateMacosRelease : IStep
1011{
1112 public async Task < BufferedCommandResult ? [ ] ? > RunStep ( CancellationToken cancellationToken )
@@ -23,8 +24,8 @@ public class CreateMacosRelease : IStep
2324 cancellationToken
2425 ) ;
2526
26- var macosDmgFile = await macosPublishDirectory . GetFile ( "SharpIDE.dmg " ) ;
27- macosDmgFile . MoveTo ( $ "{ PipelineFileHelper . GitRootDirectory . FullName } /artifacts/publish-godot/sharpide-osx-universal.dmg ") ;
27+ var macosZippedAppFile = await macosPublishDirectory . GetFile ( "SharpIDE.zip " ) ;
28+ macosZippedAppFile . MoveTo ( $ "{ PipelineFileHelper . GitRootDirectory . FullName } /artifacts/publish-godot/sharpide-osx-universal.zip ") ;
2829
2930 return [ godotExportResult ] ;
3031 }
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ custom_features=""
99export_filter =" all_resources"
1010include_filter =" "
1111exclude_filter =" "
12- export_path =" ../../artifacts/publish-godot/osx/SharpIDE.dmg "
12+ export_path =" ../../artifacts/publish-godot/osx/SharpIDE.zip "
1313patches =PackedStringArray()
1414encryption_include_filters =" "
1515encryption_exclude_filters =" "
@@ -46,7 +46,7 @@ xcode/sdk_build="22C55"
4646xcode/sdk_name =" macosx13.1"
4747xcode/xcode_version =" 1420"
4848xcode/xcode_build =" 14C18"
49- codesign/codesign =3
49+ codesign/codesign =1
5050codesign/installer_identity =" "
5151codesign/apple_team_id =" "
5252codesign/identity =" "
You can’t perform that action at this time.
0 commit comments