From 89462d6da3a21a79dcd4f145a84bc1dc54c1a42c Mon Sep 17 00:00:00 2001 From: kvp <223931578+kvpanch@users.noreply.github.com> Date: Thu, 18 Dec 2025 11:47:59 -0500 Subject: [PATCH] Extra logging --- .github/actions/get-llvm/action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/get-llvm/action.yml b/.github/actions/get-llvm/action.yml index 710a289..c565735 100644 --- a/.github/actions/get-llvm/action.yml +++ b/.github/actions/get-llvm/action.yml @@ -26,7 +26,8 @@ runs: # Try to get the most recent tag (e.g., "llvmorg-18.1.8") LLVM_TAG=$(git describe --tags --abbrev=0 2>/dev/null) if [ -n "$LLVM_TAG" ]; then - # Convert "llvmorg-18.1.8" to "llvm-18.1.8" + echo "Detected LLVM version from submodule: $LLVM_TAG" + # Convert "llvmorg-x.y.z" to "llvm-x.y.z" LLVM_VERSION=$(echo "$LLVM_TAG" | sed 's/^llvmorg-/llvm-/') echo "Detected LLVM version from submodule: $LLVM_VERSION" echo "version_prefix=$LLVM_VERSION" >> $GITHUB_OUTPUT @@ -43,7 +44,7 @@ runs: echo "Using explicitly provided version: ${{ inputs.version }}" echo "version_prefix=${{ inputs.version }}" >> $GITHUB_OUTPUT fi - + - name: find asset id: find uses: actions/github-script@v7