Radish alpha
r
rad:z2UcCU1LgMshWvXj6hXSDDrwB8q8M
Radicle Job Collaborative Object
Radicle
Git
chore(nix): add cargo-release
Fintan Halpenny committed 8 months ago
commit 648bdb82e5c939554d0a92712a99f6c78c6a8172
parent 9794762
2 files changed +29 -0
modified flake.nix
@@ -103,6 +103,7 @@
        # from the toolchain that was specified earlier.
        packages = with pkgs; [
          cargo-nextest
+
          cargo-release
          cargo-watch
          ripgrep
          rust-analyzer
added release.toml
@@ -0,0 +1,28 @@
+
allow-branch = [
+
    "main",
+
    "!HEAD",
+
]
+
sign-commit = true
+
sign-tag = true
+
push-remote = "rad"
+
release = true
+
publish = true
+
verify = true
+
owners = ["Fintan Halpenny <fintan.halpenny@gmail.com>"]
+
push = true
+
push-options = []
+
consolidate-commits = false
+
pre-release-commit-message = "chore: Release {{crate_name}} version {{version}}"
+
pre-release-replacements = []
+
tag-message = "chore: Release {{crate_name}} version {{version}}"
+
tag-name = "releases/v{{version}}"
+
tag = true
+
enable-features = []
+
enable-all-features = false
+
dependent-version = "upgrade"
+
metadata = "optional"
+
certs-source = "webpki"
+

+
[rate-limit]
+
new-packages = 5
+
existing-packages = 30