Skip to content
This repository was archived by the owner on Oct 12, 2024. It is now read-only.

Commit 079e240

Browse files
Fixes issues with build pipeline (#5)
1 parent 99d1fcf commit 079e240

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/actor-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272

7373
- name: Determine artifact metadata
7474
run: |
75-
echo "oci-repository=$(cargo metadata --no-deps --format-version 1 | jq -r '.packages[].name')" >> $GITHUB_ENV
75+
echo "oci-repository=$(cargo metadata --no-deps --format-version 1 | jq -r '.packages[].name' | sed 's/-/_/g' )" >> $GITHUB_ENV
7676
echo "oci-version=$(cargo metadata --no-deps --format-version 1 | jq -r '.packages[].version')" >> $GITHUB_ENV
7777
working-directory: ${{ env.working-directory }}
7878

applier/Cargo.lock

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

applier/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
tracing = { version = "0.1", features = ["log"] }
88
tokio = { version = "1", features = ["full"] }
9-
kubernetes-applier-interface = { version = "0.1", path = "../interface/rust" }
9+
kubernetes-applier-interface = { version = "0.1" }
1010
wasmbus-rpc = "0.6"
1111
k8s-openapi = { version = "0.13", default-features = false, features = ["v1_22"] }
1212
kube = { version = "0.65", default-features = false, features = ["rustls-tls", "config", "client"] }

0 commit comments

Comments
 (0)