From c0d2ecae0c387a1499c55190db9a0c33139fc7fd Mon Sep 17 00:00:00 2001 From: Frederik Beimgraben Date: Thu, 30 Oct 2025 21:49:59 +0100 Subject: [PATCH] fix: Actions file nameing --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c2268bd..a266fde 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,7 +72,7 @@ jobs: uses: softprops/action-gh-release@v1 with: files: | - SAT-WiSe-25-26_${{ steps.version.outputs.VERSION }}.pdf + Report_${{ steps.version.outputs.VERSION }}.pdf Output/Main.pdf name: Release ${{ steps.version.outputs.VERSION }} body_path: release_notes.md @@ -85,9 +85,9 @@ jobs: - name: Upload PDF as artifact (backup) uses: actions/upload-artifact@v4 with: - name: SAT-WiSe-25-26-Release-${{ steps.version.outputs.VERSION }} + name: Report-${{ steps.version.outputs.VERSION }} path: | - SAT-WiSe-25-26_${{ steps.version.outputs.VERSION }}.pdf + Report_${{ steps.version.outputs.VERSION }}.pdf Output/Main.pdf retention-days: 90 if-no-files-found: error