From bbaca49e3a743cf3308da7edd889153e33bcd51b Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Sat, 15 Nov 2025 17:25:01 +1000 Subject: [PATCH] Fix macos release artifact upload --- iac/Deploy/Steps/CreateGithubRelease.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/iac/Deploy/Steps/CreateGithubRelease.cs b/iac/Deploy/Steps/CreateGithubRelease.cs index 1e47641..7e6c25c 100644 --- a/iac/Deploy/Steps/CreateGithubRelease.cs +++ b/iac/Deploy/Steps/CreateGithubRelease.cs @@ -60,11 +60,11 @@ public class CreateGithubRelease(IPipelineContext pipelineContext) : IStep }; var linuxAsset = await github.Repository.Release.UploadAsset(release, linuxUpload, cancellationToken); - var macosReleaseDmg = await PipelineFileHelper.GitRootDirectory.GetFile("./artifacts/publish-godot/sharpide-osx-universal.dmg"); - await using var macosStream = macosReleaseDmg.OpenRead(); + var macosReleaseZip = await PipelineFileHelper.GitRootDirectory.GetFile("./artifacts/publish-godot/sharpide-osx-universal.zip"); + await using var macosStream = macosReleaseZip.OpenRead(); var macosUpload = new ReleaseAssetUpload { - FileName = $"sharpide-osx-universal-{versionString}.dmg", + FileName = $"sharpide-osx-universal-{versionString}.zip", ContentType = "application/octet-stream", RawData = macosStream };