From 81d862c97e98bb194a765ec5fe5083291f8529b3 Mon Sep 17 00:00:00 2001 From: Ruben Vitt Date: Sat, 12 Oct 2024 11:17:24 +0200 Subject: [PATCH] chore(workflow): relocate listing of frontend artifacts in release workflow - Moved 'List frontend artifacts' step to a new position in the release workflow. - Ensures artifact listing happens before uploading frontend artifacts and generating release notes. --- .github/workflows/release.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fd9ab34..0d49a56 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -127,15 +127,6 @@ jobs: projectPath: frontend args: ${{ matrix.args }} - - name: List frontend artifacts - run: | - echo "Listing contents of frontend-artifacts directory:" - find frontend-artifacts -type d - echo "Listing all .dmg, .AppImage, and .msi files:" - find frontend-artifacts -type f \( -name "*.dmg" -o -name "*.AppImage" -o -name "*.msi" \) - echo "Listing contents of src-tauri/target directory:" - find frontend-artifacts -type d -name "src-tauri" -exec find {}/target -type f \( -name "*.dmg" -o -name "*.AppImage" -o -name "*.msi" \) \; - - name: Upload Frontend Artifact uses: actions/upload-artifact@v3 with: @@ -173,6 +164,15 @@ jobs: with: path: frontend-artifacts + - name: List frontend artifacts + run: | + echo "Listing contents of frontend-artifacts directory:" + find frontend-artifacts -type d + echo "Listing all .dmg, .AppImage, and .msi files:" + find frontend-artifacts -type f \( -name "*.dmg" -o -name "*.AppImage" -o -name "*.msi" \) + echo "Listing contents of src-tauri/target directory:" + find frontend-artifacts -type d -name "src-tauri" -exec find {}/target -type f \( -name "*.dmg" -o -name "*.AppImage" -o -name "*.msi" \) \; + - name: Prepare Release Notes run: | echo "Backend Docker Image Tags:" >> RELEASE_NOTES.md