moves output path

This commit is contained in:
ThatBen 2025-05-21 07:57:26 +02:00
parent fc0e392be2
commit f43fef4743
No known key found for this signature in database
GPG Key ID: 62C543548433D43E
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -63,7 +63,7 @@
public string GetOuputFolder()
{
return GetEnvVar("OUTPUT_FOLDER", "/tmp");
return GetEnvVar("OUTPUT_FOLDER", "/output");
}
private string GetEnvVar(string name, string defaultValue)