File tree Expand file tree Collapse file tree 3 files changed +15
-15
lines changed
Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -12,19 +12,15 @@ jobs:
1212
1313 steps :
1414 - uses : actions/checkout@v3
15- - uses : actions-rs/toolchain@v1
16- with :
17- toolchain : stable
18- override : true
19-
20- - name : Publish crates for llama-cpp-2
21- uses : katyo/publish-crates@v2
22- with :
23- path : ' ./llama-cpp-2'
24- registry-token : ${{ secrets.CARGO_REGISTRY_TOKEN }}
25-
2615 - name : Publish crates for llama-cpp-sys-2
27- uses : katyo/publish-crates@v2
28- with :
29- path : ' ./llama-cpp-sys-2'
30- registry-token : ${{ secrets.CARGO_REGISTRY_TOKEN }}
16+ run : cargo publish \
17+ --package llama-cpp-sys-2/Cargo.toml \
18+ --token ${{ secrets.CARGO_REGISTRY_TOKEN }} \
19+ --verbose \
20+ --dry-run
21+ - name : Publish crates for llama-cpp-2
22+ run : cargo publish \
23+ --package llama-cpp-2 \
24+ --token ${{ secrets.CARGO_REGISTRY_TOKEN }} \
25+ --verbose \
26+ --dry-run
Original file line number Diff line number Diff line change 11[package ]
22name = " llama-cpp-2"
3+ description = " llama.cpp bindings for Rust"
34version = " 0.1.0"
45edition = " 2021"
6+ license = " MIT OR Apache-2.0"
57
68# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
79
Original file line number Diff line number Diff line change 11[package ]
22name = " llama-cpp-sys-2"
3+ description = " Low Level Bindings to llama.cpp"
34version = " 0.1.0"
45edition = " 2021"
6+ license = " MIT or Apache-2.0"
57
68# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
79
You can’t perform that action at this time.
0 commit comments