Skip to content

Commit b569212

Browse files
committed
chore: attempt to fix releasing of include_mdtests, dfir_rs
1 parent 23221b5 commit b569212

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.github/workflows/release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
name: Release Job
2626
timeout-minutes: 20
2727
runs-on: ubuntu-latest
28+
env:
29+
RUST_BACKTRACE: 1
30+
RUST_LOG: "debug"
2831
steps:
2932
# https://github.com/orgs/community/discussions/25305#discussioncomment-8256560
3033
# Unfortunately branch protection means that this workflow can't push the updated changelogs

dfir_rs/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ tracing = "0.1.37"
5858
variadics = { path = "../variadics", version = "^0.0.9" }
5959
web-time = "1.0.0"
6060

61-
# added to workaround `cargo smart-release` https://github.com/Byron/cargo-smart-release/issues/16
61+
# added to workaround `cargo smart-release` https://github.com/Byron/cargo-smart-release/issues/36
6262
multiplatform_test = { path = "../multiplatform_test", version = "^0.5.0", optional = true }
63+
include_mdtests = { path = "../include_mdtests", version = "^0.0.0", optional = true }
6364

6465
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
6566
tokio = { version = "1.29.0", features = [ "full" ] }

include_mdtests/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ workspace = true
1414
[lib]
1515
proc-macro = true
1616

17+
[package.metadata.docs.rs]
18+
all-features = true
19+
1720
[dependencies]
1821
syn = { version = "2.0.46", features = [ "parsing" ] }
1922
proc-macro2 = "1.0.74"

0 commit comments

Comments
 (0)