Fix Release action

This commit is contained in:
Alexandr Bogomiakov
2025-07-24 03:11:53 +03:00
parent fcc1f76d70
commit 6825f1fff6
5 changed files with 147 additions and 307 deletions

View File

@@ -15,7 +15,9 @@ RUN apt-get update && apt-get install -y \
libxdo3 \
&& rm -rf /var/lib/apt/lists/*
COPY khm /usr/local/bin/khm
# Copy the appropriate binary based on the target architecture
ARG TARGETARCH
COPY bin/linux_${TARGETARCH}/khm /usr/local/bin/khm
RUN chmod +x /usr/local/bin/khm
ENTRYPOINT ["/usr/local/bin/khm"]