Update manifest and CI script.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Nolan Darilek 2022-12-15 14:39:04 -06:00
parent 0c02c10895
commit 92047cd102
2 changed files with 5 additions and 7 deletions

View File

@ -5,19 +5,17 @@ name: default
steps:
- name: test
image: rust
pull: always
commands:
- rustup component add clippy rustfmt
- cargo fmt --check
- cargo build --all
- cargo build --examples --all
- cargo test --all
- cargo test
- cargo clippy
- name: release
image: rust
pull: always
commands:
- cargo install -f git-cliff
- git-cliff --output CHANGELOG.md
- cargo publish --allow-dirty
- cargo publish
when:
event:
- tag

View File

@ -13,7 +13,7 @@ edition = "2021"
rand = "0.8"
[package.metadata.release]
tag-prefix = ""
publish = false
push = false
pre-release-hook = ["git-cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]
pre-release-commit-message = "Release"