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