From 4cd1094395fb10dc734a3e422ba3a820cbb78ef5 Mon Sep 17 00:00:00 2001 From: itdoginfo Date: Thu, 9 Oct 2025 19:53:37 +0300 Subject: [PATCH] Check ipk without v --- .github/workflows/build.yml | 2 +- Dockerfile-ipk | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 69a4821..5c3fd3c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,7 @@ name: Build packages on: push: tags: - - 'v*' + - '*' permissions: contents: write diff --git a/Dockerfile-ipk b/Dockerfile-ipk index 278e9d0..fd6abfc 100644 --- a/Dockerfile-ipk +++ b/Dockerfile-ipk @@ -1,9 +1,11 @@ FROM itdoginfo/openwrt-sdk-ipk:24.10.3 ARG PODKOP_VERSION -ENV PODKOP_VERSION=${PODKOP_VERSION} COPY ./podkop /builder/package/feeds/utilities/podkop COPY ./luci-app-podkop /builder/package/feeds/luci/luci-app-podkop -RUN make defconfig && make package/podkop/compile V=s -j4 && make package/luci-app-podkop/compile V=s -j4 \ No newline at end of file +RUN export PODKOP_VERSION="v${PODKOP_VERSION}" && \ + make defconfig && \ + make package/podkop/compile V=s -j4 && \ + make package/luci-app-podkop/compile V=s -j4 \ No newline at end of file