From 6dd3a8e342fc1656943880b2af1069cde19319c0 Mon Sep 17 00:00:00 2001 From: Scion Date: Mon, 30 Jun 2025 01:32:13 -0700 Subject: [PATCH] Test --- .../download-previous-artifacts.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/github/download-previous-artifacts/download-previous-artifacts.cs b/github/download-previous-artifacts/download-previous-artifacts.cs index 4b2ca9d..6d23333 100644 --- a/github/download-previous-artifacts/download-previous-artifacts.cs +++ b/github/download-previous-artifacts/download-previous-artifacts.cs @@ -48,6 +48,10 @@ RepositoryApi repoApi = new(giteaConfig); string owner = configuration["GITHUB_REPOSITORY_OWNER"]!; string repoName = configuration["GITHUB_REPOSITORY"]!; repoName = Path.GetFileName(repoName); + +Console.WriteLine($"Owner: {owner}"); +Console.WriteLine($"Repository: {repoName}"); +Console.WriteLine($"Host: {giteaConfig.BasePath}"); Repository repo = await repoApi.RepoGetAsync(owner, repoName); Console.WriteLine($"Repository:\n {JsonSerializer.Serialize(repo)}");