Skip to content

Commit c5c6218

Browse files
fix(ci): Change the name so things actually work
Signed-off-by: Taylor Thomas <taylor@cosmonic.com>
1 parent b034fe1 commit c5c6218

File tree

28 files changed

+44
-40
lines changed

28 files changed

+44
-40
lines changed

.github/workflows/publish-binaries.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,16 @@ jobs:
128128
run: rustup update stable --no-self-update && rustup default stable
129129
- name: Publish wasm-pkg-common
130130
working-directory: ./crates/wasm-pkg-common
131+
# TODO: temporary hack because we can't noop publish. Will remove after release
132+
continue-on-error: true
131133
run: cargo publish
132134
- name: Publish wasm-pkg-client
133135
working-directory: ./crates/wasm-pkg-client
136+
# TODO: temporary hack because we can't noop publish. Will remove after release
137+
continue-on-error: true
134138
run: cargo publish
135-
- name: Publish wkg-core
136-
working-directory: ./crates/wkg-core
139+
- name: Publish wasm-pkg-core
140+
working-directory: ./crates/wasm-pkg-core
137141
run: cargo publish
138142
- name: Publish wkg
139143
working-directory: ./crates/wkg

Cargo.lock

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ wasm-pkg-client = { version = "0.6.0", path = "crates/wasm-pkg-client" }
4040
wasm-metadata = "0.217"
4141
wit-component = "0.217"
4242
wit-parser = "0.217"
43-
wkg-core = { version = "0.6.0", path = "crates/wkg-core" }
43+
wasm-pkg-core = { version = "0.6.0", path = "crates/wasm-pkg-core" }
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
2-
name = "wkg-core"
2+
name = "wasm-pkg-core"
33
description = "Wasm Package Tools core libraries for wkg"
4-
repository = "https://github.com/bytecodealliance/wasm-pkg-tools/tree/main/crates/wkg-core"
4+
repository = "https://github.com/bytecodealliance/wasm-pkg-tools/tree/main/crates/wasm-pkg-core"
55
edition.workspace = true
66
version.workspace = true
77
authors.workspace = true
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
use wasm_pkg_core::{config::Config as WkgConfig, lock::LockFile};
12
use wit_component::DecodedWasm;
2-
use wkg_core::{config::Config as WkgConfig, lock::LockFile};
33

44
mod common;
55

@@ -12,7 +12,7 @@ async fn test_build_wit() {
1212
.await
1313
.expect("Should be able to create a new lock file");
1414
let (_temp_cache, client) = common::get_client().await.unwrap();
15-
let (pkg, version, bytes) = wkg_core::wit::build_package(
15+
let (pkg, version, bytes) = wasm_pkg_core::wit::build_package(
1616
&WkgConfig::default(),
1717
fixture_path.join("wit"),
1818
&mut lock,
@@ -92,7 +92,7 @@ async fn test_bad_dep_failure() {
9292
.await
9393
.expect("Should be able to write the world file");
9494

95-
wkg_core::wit::build_package(
95+
wasm_pkg_core::wit::build_package(
9696
&WkgConfig::default(),
9797
fixture_path.join("wit"),
9898
&mut lock,

0 commit comments

Comments
 (0)