Skip to content

Commit

Permalink
fix: fix Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
zensh committed Jul 5, 2024
1 parent a309134 commit ccc4841
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions examples/eth-canister/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion linux.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion src/idempotent-proxy-cf-worker/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit ccc4841

Please sign in to comment.