Try generic upload
All checks were successful
Build on push / prepare (push) Successful in 19s
Build on push / build (push) Successful in 23s

This commit is contained in:
2026-02-14 17:56:57 +01:00
parent c19921eb85
commit 0332f08194
8 changed files with 190 additions and 51 deletions

View File

@@ -0,0 +1,23 @@
namespace sh.actions.package_cleanup.Models;
/// <summary>
/// Konfiguration für Gitea-Verbindung
/// </summary>
public class GiteaConfig
{
/// <summary>
/// Basis-URL der Gitea-Instanz (z.B. https://git.example.com)
/// </summary>
public string GiteaUrl { get; set; } = string.Empty;
/// <summary>
/// API-Token für Authentifizierung
/// </summary>
public string ApiToken { get; set; } = string.Empty;
/// <summary>
/// Owner/Username des Pakets
/// </summary>
public string Owner { get; set; } = string.Empty;
}

View File

@@ -0,0 +1,10 @@
namespace sh.actions.package_cleanup.Models;
public class GiteaPackage
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Version { get; set; } = string.Empty;
public string Type { get; set; } = string.Empty;
public DateTime CreatedAt { get; set; }
}