Check ipk without v

This commit is contained in:
itdoginfo
2025-10-09 19:53:37 +03:00
parent e87b431d86
commit 4cd1094395
2 changed files with 5 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ name: Build packages
on:
push:
tags:
- 'v*'
- '*'
permissions:
contents: write

View File

@@ -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
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