We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed36663 commit fdb41fcCopy full SHA for fdb41fc
6 files changed
.github/workflows/release.yml
@@ -63,7 +63,7 @@ jobs:
63
- uses: actions/checkout@v4
64
- uses: dtolnay/rust-toolchain@stable
65
- name: Cargo publish (dry run)
66
- run: cargo publish --dry-run --locked
+ run: cargo publish --dry-run
67
68
publish-crate:
69
name: Publish to crates.io
@@ -76,4 +76,6 @@ jobs:
76
77
78
- name: Cargo publish
79
- run: cargo publish --locked --token ${{ secrets.CRATES_IO_TOKEN }}
+ run: cargo publish
80
+ env:
81
+ CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
.gitignore
@@ -1,4 +1,5 @@
1
/target
2
+Cargo.lock
3
/.run
4
/.tmp_udf_*
5
/wp_bench_authority.sqlite
0 commit comments