Skip to content

Commit

Permalink
Fix publishing (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
vigoo authored Apr 18, 2024
1 parent 2e9932a commit cb2f1a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -263,19 +263,19 @@ args = ["publish", "-p", "golem-client", "--all-features", "--allow-dirty"]
description = "Publishes golem-api-grpc package to crates.io"
dependencies = ["build-release"]
command = "cargo"
args = ["publish", "-p", "golem-api-grpc", "--all-features", "--allow-dirty"]
args = ["publish", "-p", "golem-api-grpc", "--all-features", "--allow-dirty", "--no-verify"]

[tasks.publish-golem-common]
description = "Publishes golem-common package to crates.io"
dependencies = ["build-release"]
command = "cargo"
args = ["publish", "-p", "golem-common", "--all-features", "--allow-dirty"]
args = ["publish", "-p", "golem-common", "--all-features", "--allow-dirty", "--no-verify"]

[tasks.publish-golem-test-framework]
description = "Publishes golem-test-framework package to crates.io"
dependencies = ["build-release"]
command = "cargo"
args = ["publish", "-p", "golem-test-framework", "--all-features", "--allow-dirty"]
args = ["publish", "-p", "golem-test-framework", "--all-features", "--allow-dirty", "--no-verify"]

[tasks.publish-golem-cli]
description = "Publishes golem-cli package to crates.io"
Expand Down
1 change: 0 additions & 1 deletion golem-api-grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ homepage = "https://golem.cloud"
repository = "https://github.com/golemcloud/golem"
description = "GRPC API for Golem services"


[lib]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion golem-worker-executor-base/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {

std::fs::write(target_file, preview2_mod_gen(&golem_wit_root)).unwrap();

println!("cargo::rerun-if-changed=build.rs");
println!("cargo:rerun-if-changed=build.rs");

Ok(())
}
Expand Down

0 comments on commit cb2f1a5

Please sign in to comment.