Skip to content

Commit 3807197

Browse files
committed
fix exports
1 parent e84e0a2 commit 3807197

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

iac/Deploy/Steps/CreateLinuxRelease.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
namespace Deploy.Steps;
77

88
[DependsOnStep<RestoreAndBuildStep>]
9+
[DependsOnStep<CreateMacosRelease>]
910
public 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

iac/Deploy/Steps/CreateMacosRelease.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
namespace Deploy.Steps;
77

88
[DependsOnStep<RestoreAndBuildStep>]
9+
[DependsOnStep<CreateWindowsRelease>]
910
public 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
}

src/SharpIDE.Godot/export_presets.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ custom_features=""
99
export_filter="all_resources"
1010
include_filter=""
1111
exclude_filter=""
12-
export_path="../../artifacts/publish-godot/osx/SharpIDE.dmg"
12+
export_path="../../artifacts/publish-godot/osx/SharpIDE.zip"
1313
patches=PackedStringArray()
1414
encryption_include_filters=""
1515
encryption_exclude_filters=""
@@ -46,7 +46,7 @@ xcode/sdk_build="22C55"
4646
xcode/sdk_name="macosx13.1"
4747
xcode/xcode_version="1420"
4848
xcode/xcode_build="14C18"
49-
codesign/codesign=3
49+
codesign/codesign=1
5050
codesign/installer_identity=""
5151
codesign/apple_team_id=""
5252
codesign/identity=""

0 commit comments

Comments
 (0)