From a2b385889f03b7e025b4048217d9f62c49d85526 Mon Sep 17 00:00:00 2001 From: Steve Degosserie <723552+stiiifff@users.noreply.github.com> Date: Thu, 18 Sep 2025 07:39:04 +0200 Subject: [PATCH] fix: Fix publish binary gh action (#175) --- .../{task-publish-binary => task-publish-binary.yml} | 2 -- docker/datahaven-production.Dockerfile | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) rename .github/workflows/{task-publish-binary => task-publish-binary.yml} (99%) diff --git a/.github/workflows/task-publish-binary b/.github/workflows/task-publish-binary.yml similarity index 99% rename from .github/workflows/task-publish-binary rename to .github/workflows/task-publish-binary.yml index 0985f612..649fb14a 100644 --- a/.github/workflows/task-publish-binary +++ b/.github/workflows/task-publish-binary.yml @@ -10,8 +10,6 @@ on: to: description: tag (ex. v0.2.0) to generate release note and binaries from required: true - pull_request: - branches: [main] jobs: build-binary: diff --git a/docker/datahaven-production.Dockerfile b/docker/datahaven-production.Dockerfile index 2bf338ee..ef7215d3 100644 --- a/docker/datahaven-production.Dockerfile +++ b/docker/datahaven-production.Dockerfile @@ -30,8 +30,8 @@ ENV PATH="/root/.cargo/bin:$PATH" RUN rustup default stable # rustup version are pinned in the rust-toolchain file -COPY ./operator /datahaven/datahaven -WORKDIR /datahaven/datahaven +COPY ./operator /datahaven +WORKDIR /datahaven # Print target cpu RUN rustc --print target-cpus