From 519955ea91e8b6dad468b125e767c771e9605e6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kiss=20R=C3=B3bert?= Date: Sat, 14 Jun 2025 13:49:13 +0200 Subject: [PATCH] fix: use the correct commit sha in the s3 key --- lib/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/run.js b/lib/run.js index 616ede0..2665829 100644 --- a/lib/run.js +++ b/lib/run.js @@ -37,7 +37,7 @@ export async function run() { const fileName = path.basename(file) fileNames.push(fileName) // eslint-disable-next-line prettier/prettier - const key = inputs.s3KeyPrefix + 'sha/' + process.env.GITHUB_SHA + '/' + fileName + const key = inputs.s3KeyPrefix + 'sha/' + commitSha + '/' + fileName await uploadToS3(inputs, key, file) }