Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Zentrik authored Sep 4, 2024
1 parent 09b2a34 commit fcdba8d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ jobs:
fetch_llvm_version:
runs-on: ubuntu-latest
outputs:
LLVM_VERSION: ${{ steps.Fetch.outputs.LLVM_VERSION }}
LLVM_VERSION_MAJOR: ${{ steps.Fetch.outputs.LLVM_VERSION_MAJOR }}
LLVM_VERSION: ${{ steps.fetch.outputs.LLVM_VERSION }}
LLVM_VERSION_MAJOR: ${{ steps.fetch.outputs.LLVM_VERSION_MAJOR }}
steps:
- name: "Fetch"
id: fetch
run: |
set -o xtrace
LLVM_VERSION=$(git ls-remote https://github.com/llvm/llvm-project.git | grep 'refs/heads/main$' | awk '{print $1}')
Expand Down

0 comments on commit fcdba8d

Please sign in to comment.