We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d71313c commit 5fc4efdCopy full SHA for 5fc4efd
.github/workflows/publish-upon-release.yml
@@ -1,4 +1,4 @@
1
-name: Publish to Crates.io
+name: Test Publish to Crates.io
2
3
on:
4
release:
@@ -20,12 +20,12 @@ jobs:
20
- name: Install cargo-release
21
run: cargo install cargo-release
22
23
- - name: Publish to Crates.io (for llama-cpp-2)
24
- run: cargo release
+ - name: Dry-run publish to Crates.io (for llama-cpp-2)
+ run: cargo release --dry-run
25
env:
26
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
27
28
- - name: Publish to Crates.io (for llama-cpp-sys-2)
29
- run: cd llama-cpp-sys-2 && cargo release
+ - name: Dry-run publish to Crates.io (for llama-cpp-sys-2)
+ run: cd llama-cpp-sys-2 && cargo release --dry-run
30
31
0 commit comments