diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c123d66..7b69603 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,3 +12,4 @@ jobs: with: registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} ignore-unpublished-changes: true + args: -p idempotent-proxy-types -p idempotent-proxy-server diff --git a/Dockerfile b/Dockerfile index f2e61d4..0037240 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,7 +51,7 @@ COPY --from=planner /src/recipe.json recipe.json RUN xx-cargo chef cook --release --recipe-path recipe.json COPY . . -RUN xx-cargo build --release --locked \ +RUN xx-cargo build --release --locked -p idempotent-proxy-server \ && xx-verify target/$(xx-cargo --print-target-triple)/release/idempotent-proxy-server \ && mv target/$(xx-cargo --print-target-triple)/release /src/release diff --git a/examples/eth-canister/Cargo.toml b/examples/eth-canister/Cargo.toml index 6c77360..03a3d6e 100644 --- a/examples/eth-canister/Cargo.toml +++ b/examples/eth-canister/Cargo.toml @@ -2,6 +2,7 @@ name = "eth-canister" version = "0.1.0" edition = "2021" +publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/linux.Dockerfile b/linux.Dockerfile index 99e0cb0..b33eabb 100644 --- a/linux.Dockerfile +++ b/linux.Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update \ WORKDIR /src COPY src ./src COPY Cargo.toml Cargo.lock ./ -RUN cargo build --release --locked +RUN cargo build --release --locked -p idempotent-proxy-server RUN ls target/release FROM scratch AS exporter diff --git a/src/idempotent-proxy-cf-worker/package.json b/src/idempotent-proxy-cf-worker/package.json index 2767b3f..20243f3 100644 --- a/src/idempotent-proxy-cf-worker/package.json +++ b/src/idempotent-proxy-cf-worker/package.json @@ -1,6 +1,7 @@ { "name": "idempotent-proxy-cf-worker", - "version": "0.5.2", + "version": "0.5.4", + "publish": false, "description": "Reverse proxy server with build-in idempotency support runing as a Cloudflare Worker.", "homepage": "https://github.com/ldclabs/idempotent-proxy/tree/main/src/idempotent-proxy-cf-worker", "scripts": {