From 2f5914481f664758ee1879ed3391b08c5c7eb50c Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Fri, 5 Jan 2024 19:16:18 +0100 Subject: [PATCH] Fix: prefix the survey result packs with openttd-survey-pack That makes it a bit easier to understand what the content of the file actually is. --- .github/workflows/pack-results.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pack-results.yml b/.github/workflows/pack-results.yml index d22141f..9680bc6 100644 --- a/.github/workflows/pack-results.yml +++ b/.github/workflows/pack-results.yml @@ -48,11 +48,11 @@ jobs: echo "::endgroup::" echo "::group::Pack survey results" - tar --xz -cvf ${date}.tar.xz ${date} + tar --xz -cvf openttd-survey-pack.${date}.tar.xz ${date} echo "::endgroup::" echo "::group::Upload survey result pack" - rclone copy -v ${date}.tar.xz openttd:survey-packed-prod/${year}/${month} + rclone copy -v openttd-survey-pack.${date}.tar.xz openttd:survey-packed-prod/${year}/${month} echo "::endgroup::" echo "::group::Remove survey results"