From 533a2d1319699ba65e46096a89957523c353eec3 Mon Sep 17 00:00:00 2001 From: Scion Date: Mon, 30 Jun 2025 01:22:15 -0700 Subject: [PATCH] Test --- github/download-previous-artifacts/action.yaml | 2 +- .../download-previous-artifacts/download-previous-artifacts.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/github/download-previous-artifacts/action.yaml b/github/download-previous-artifacts/action.yaml index 0aafc33..cd1b1e8 100644 --- a/github/download-previous-artifacts/action.yaml +++ b/github/download-previous-artifacts/action.yaml @@ -42,4 +42,4 @@ runs: ARTIFACT_FILENAME: ${{ inputs.artifactName }} UNZIP_DIR: ${{ inputs.unzipDir }} with: - command: run "${{ github.action_path }}/download-previous-artifacts.cs" "${{ toJSON(inputs) }}" "${{ github.token }}" + command: run "${{ github.action_path }}/download-previous-artifacts.cs" "${{ toJSON(inputs) }}" diff --git a/github/download-previous-artifacts/download-previous-artifacts.cs b/github/download-previous-artifacts/download-previous-artifacts.cs index e4b86af..c290194 100644 --- a/github/download-previous-artifacts/download-previous-artifacts.cs +++ b/github/download-previous-artifacts/download-previous-artifacts.cs @@ -29,6 +29,7 @@ Console.WriteLine("Hello, World!"); string jsonInput = args.Length > 0 ? args[0] : "{}"; +Console.WriteLine($"JSON Input: {jsonInput}"); byte[] jsonBytes = Encoding.UTF8.GetBytes(jsonInput); using MemoryStream memoryStream = new(jsonBytes);