Skip to content

Commit 973aff5

Browse files
committed
add wit-bindgen-go to ci/publish.rs
Signed-off-by: Joel Dice <joel.dice@fermyon.com>
1 parent 74769e3 commit 973aff5

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

ci/publish.rs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ const CRATES_TO_PUBLISH: &[&str] = &[
2424
"wit-bindgen-csharp",
2525
"wit-bindgen-markdown",
2626
"wit-bindgen-moonbit",
27+
"wit-bindgen-go",
2728
"wit-bindgen-rust-macro",
2829
"wit-bindgen-rt",
2930
"wit-bindgen",
@@ -65,11 +66,13 @@ fn main() {
6566
bump_version(&krate, &crates, name == "bump-patch");
6667
}
6768
// update the lock file
68-
assert!(Command::new("cargo")
69-
.arg("fetch")
70-
.status()
71-
.unwrap()
72-
.success());
69+
assert!(
70+
Command::new("cargo")
71+
.arg("fetch")
72+
.status()
73+
.unwrap()
74+
.success()
75+
);
7376
}
7477

7578
"publish" => {

0 commit comments

Comments
 (0)