3 Get the LLVM version from the llvm-project source tree. This action assumes
4 the llvm-project sources have already been checked out into GITHUB_WORKSPACE.
8 description: LLVM major version
9 value: ${{ steps.version.outputs.major }}
11 description: LLVM minor version
12 value: ${{ steps.version.outputs.minor }}
14 description: LLVM patch version
15 value: ${{ steps.version.outputs.patch }}
24 for v in major minor patch; do
25 echo "$v=`llvm/utils/release/get-llvm-version.sh --$v`" >> $GITHUB_OUTPUT