We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
llvm18-1
1 parent f64726c commit 664dfabCopy full SHA for 664dfab
.github/workflows/release.yml
@@ -36,8 +36,9 @@ jobs:
36
runs-on: ubuntu-latest
37
env:
38
LLVM_INSTALL_PATH: ~/llvm
39
- LLVM_VERSION: "14"
40
- LLVM_LIB_NAME: "libLLVM-14.so"
+ LLVM_VERSION: "18"
+ LLVM_VERSION_IN_FEATURE: "18-1"
41
+ LLVM_LIB_NAME: "libLLVM.so.18.1"
42
steps:
43
- name: Checkout the repository
44
uses: actions/checkout@v4
@@ -65,6 +66,10 @@ jobs:
65
66
tool: cargo-release
67
68
- name: Publish
- run: cargo release publish -x --no-confirm --workspace --features llvm-plugin/llvm${{ env.LLVM_VERSION }}-0
69
+ run: |
70
+ cargo release \
71
+ publish -x --no-confirm \
72
+ --workspace \
73
+ --features llvm-plugin/llvm${{ env.LLVM_VERSION_IN_FEATURE }}
74
75
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
0 commit comments