From b50ec2b4e753cd431879684ee7e7f73820e976fc Mon Sep 17 00:00:00 2001 From: f-trycua Date: Mon, 17 Mar 2025 12:01:19 +0100 Subject: [PATCH] Adjust directory path --- .github/workflows/publish-lume.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-lume.yml b/.github/workflows/publish-lume.yml index 5976b9cd..a4bc5e86 100644 --- a/.github/workflows/publish-lume.yml +++ b/.github/workflows/publish-lume.yml @@ -150,10 +150,13 @@ jobs: cd scripts/build LOG_LEVEL=minimal ./build-release-notarized.sh + # Return to the lume directory + cd ../.. + # Debug: List what files were actually created echo "Files in .release directory:" - ls -la ../../../.release - + ls -la .release + - name: Generate SHA256 Checksums id: generate_checksums working-directory: ./libs/lume/.release @@ -173,6 +176,10 @@ jobs: echo "checksums<> $GITHUB_OUTPUT echo "$checksums" >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT + + # Debug: Show all files in the release directory + echo "All files in release directory:" + ls -la - name: Upload Notarized Package uses: actions/upload-artifact@v4