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