From f43fef47430ec39d55fe80ca4d2e9a384cd54bf8 Mon Sep 17 00:00:00 2001 From: ThatBen Date: Wed, 21 May 2025 07:57:26 +0200 Subject: [PATCH] moves output path --- .github/workflows/trace-contract.yaml | 2 +- Tools/TraceContract/Config.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/trace-contract.yaml b/.github/workflows/trace-contract.yaml index 57dda93e..cc9610ea 100644 --- a/.github/workflows/trace-contract.yaml +++ b/.github/workflows/trace-contract.yaml @@ -38,6 +38,6 @@ jobs: uses: actions/upload-artifact@v4 with: name: contract-trace - path: /tmp/* + path: /output/* if-no-files-found: error retention-days: 7 diff --git a/Tools/TraceContract/Config.cs b/Tools/TraceContract/Config.cs index 5cdce6e7..1677e5e4 100644 --- a/Tools/TraceContract/Config.cs +++ b/Tools/TraceContract/Config.cs @@ -63,7 +63,7 @@ public string GetOuputFolder() { - return GetEnvVar("OUTPUT_FOLDER", "/tmp"); + return GetEnvVar("OUTPUT_FOLDER", "/output"); } private string GetEnvVar(string name, string defaultValue)