ignore tags

This commit is contained in:
t1amak
2025-11-14 21:20:10 +00:00
parent 5c3259e58c
commit dba51f5e49
2 changed files with 3 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
FROM p2pool_build_ubuntu
ARG P2POOL_VERSION
ARG P2POOL_CHECKOUT
ADD . /p2pool/
RUN /p2pool/scripts/release/linux_x64/p2pool_linux_x64.sh p2pool-${P2POOL_VERSION}-linux-x64 ${P2POOL_VERSION}

View File

@@ -3,7 +3,8 @@ set -e
cd /p2pool
git fetch --jobs=$(nproc)
git checkout $2
CHECKOUT_REF=${P2POOL_CHECKOUT:-$2}
git checkout "$CHECKOUT_REF"
git submodule update --recursive --jobs $(nproc)
export TZ=UTC0