Compare commits

...

2 Commits

Author SHA1 Message Date
b4d08120ce Run notification step even on failure.
All checks were successful
continuous-integration/drone/push Build is passing
2022-03-18 16:23:32 -05:00
01252acf7a chore: More automated release configuration. 2022-03-18 15:28:27 -05:00
2 changed files with 4 additions and 1 deletions

View File

@ -36,3 +36,5 @@ steps:
{{else}}
{{repo.name}} build {{build.number}} failed. <{{build.link}}>
{{/success}}
when:
status: [success, failure]

View File

@ -13,5 +13,6 @@ edition = "2021"
rand = "0.8"
[package.metadata.release]
tag-prefix = ""
publish = false
pre-release-hook = "git cliff --tag {{tag_name}} --output CHANGELOG.md && git add CHANGELOG.md && git commit CHANGELOG.md -m 'Update changelog for release.'"
pre-release-hook = ["git cliff --tag {{tag_name}} --output CHANGELOG.md", "git add CHANGELOG.md", "git commit CHANGELOG.md -m 'Update changelog for release.'"]