Skip to content

Commit 77b1a6a

Browse files
committed
fix: rabbit improvements
1 parent 4f6f019 commit 77b1a6a

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/rust.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ jobs:
7272

7373
# Publish to crates.io (only if all builds succeed)
7474
# This job will only run if both test and build jobs succeed.
75-
# With fail-fast: false, the build job fails if ANY matrix build fails,
76-
# ensuring all artifacts are built before publishing.
7775
publish:
7876
runs-on: ubuntu-latest
7977
needs: [test, build]

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ allow-branch = ["main"]
3030
pre-release-hook = [
3131
"sh",
3232
"-c",
33-
"cargo fmt --all && cargo clippy --all-targets --all-features -- -D warnings && if [ -n \"${GITHUB_TOKEN:-}\" ]; then GITHUB_TOKEN=\"$GITHUB_TOKEN\" git cliff --unreleased --github-repo MostroP2P/mostro-core -o CHANGELOG.md --tag {{version}}; else git cliff --unreleased -o CHANGELOG.md --tag {{version}}; fi && if [ \"$DRY_RUN\" != \"true\" ]; then git diff --quiet CHANGELOG.md || git add CHANGELOG.md && git commit -m \"Update CHANGELOG for version {{version}}\"; else echo \"DRY RUN: Skip git add and commit\"; fi",
33+
"cargo fmt --all && cargo clippy --all-targets --all-features -- -D warnings && if [ -n \"${GITHUB_TOKEN:-}\" ]; then GITHUB_TOKEN=\"$GITHUB_TOKEN\" git cliff --unreleased --github-repo MostroP2P/mostro-core -o CHANGELOG.md --tag {{version}}; else git cliff --unreleased -o CHANGELOG.md --tag {{version}}; fi && if [ \"$DRY_RUN\" != \"true\" ]; then git diff --quiet CHANGELOG.md || { git add CHANGELOG.md && git commit -m \"Update CHANGELOG for version {{version}}\"; }; else echo \"DRY RUN: Skip git add and commit\"; fi",
3434
]
3535

3636
[dependencies]

0 commit comments

Comments
 (0)