Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
d0cd committed Nov 20, 2024
1 parent c921524 commit eb75b85
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,15 @@ jobs:
target: aarch64-apple-darwin
components: rustfmt

- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "11" # Specify the LLVM/Clang version you need
directory: ${{ runner.temp }}/llvm

- name: Set LIBCLANG_PATH
run: echo "LIBCLANG_PATH=${{ runner.temp }}/llvm/lib" >> $GITHUB_ENV

- name: Verify Cargo.lock Exists
run: |
if [ ! -f Cargo.lock ]; then
Expand Down

0 comments on commit eb75b85

Please sign in to comment.