From 91f97d1038024444bc6d7d122717a016b8d9e1c1 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 13 Oct 2025 10:14:52 +1100 Subject: [PATCH] chore: fix file upload path --- .github/workflows/fetch-release-stats.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fetch-release-stats.yml b/.github/workflows/fetch-release-stats.yml index 23ceb26..9885b6a 100644 --- a/.github/workflows/fetch-release-stats.yml +++ b/.github/workflows/fetch-release-stats.yml @@ -39,16 +39,16 @@ jobs: print "|---|---|---|---|---|---|---|---|---|---|---|" } NR>1 { print "| " $1 " | " $2 " | " $3 " | " $4 " | " $5 " | " $6 " | " $7 " | " $8 " | " $9 " | " $10 " | " $11 " |" - }' session-desktop-release-stats.csv >> $GITHUB_STEP_SUMMARY + }' release_stats/session-desktop-release-stats.csv >> $GITHUB_STEP_SUMMARY - name: Upload CSV artifact uses: actions/upload-artifact@v4 with: name: release-stats-${{ github.run_number }} - path: session-desktop-release-stats.csv + path: release_stats/session-desktop-release-stats.csv retention-days: 5 - name: Display CSV preview run: | echo "CSV Preview:" - head -n 5 session-desktop-release-stats.csv + head -n 5 release_stats/session-desktop-release-stats.csv