infra: Add functionality to the CI to upload artifacts to this GitLab and make releases based on all files uploaded.

See merge request ryubing/ryujinx!48
This commit is contained in:
GreemDev 2025-06-03 18:28:59 -05:00
parent 379e9ab622
commit 8f5102aa2a
10 changed files with 558 additions and 196 deletions

View file

@ -0,0 +1,20 @@
using System.Text.Json.Serialization;
namespace Ryujinx.Ava.Common.Models.GitLab
{
public class GitLabReleaseAssetJsonResponse
{
[JsonPropertyName("links")]
public GitLabReleaseAssetLinkJsonResponse[] Links { get; set; }
public class GitLabReleaseAssetLinkJsonResponse
{
[JsonPropertyName("id")]
public long Id { get; set; }
[JsonPropertyName("name")]
public string AssetName { get; set; }
[JsonPropertyName("url")]
public string Url { get; set; }
}
}
}