From 677eff9ace24d91d4ddefd84ac27d7bfe31895f0 Mon Sep 17 00:00:00 2001 From: Cyril Rohr Date: Thu, 30 May 2024 12:58:20 +0000 Subject: [PATCH] fix --- .github/workflows/publish.yml | 13 ++++++++++++- images/Dockerfile.template | 1 - 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a52abb6..4e51dfe 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,18 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - target: ["debian:10"] + target: + - debian:10 + - debian:11 + - debian:12 + - ubuntu:20.04 + - ubuntu:22.04 + - ubuntu:24.04 + - el:7 + - el:8 + - el:9 + - sles:12 + - sles:15 steps: - name: Checkout code diff --git a/images/Dockerfile.template b/images/Dockerfile.template index 4441ca2..7831512 100644 --- a/images/Dockerfile.template +++ b/images/Dockerfile.template @@ -3,6 +3,5 @@ FROM barebuild/$TARGET ARG PKGR_VERSION WORKDIR /app - RUN curl -GLs https://buildcurl.com -d recipe=pkgr -d version="$PKGR_VERSION" -d target="$TARGET" -o - | tar xzf - -C /usr/local ENTRYPOINT ["/usr/local/bin/pkgr", "package", ".", "--clean", "--auto", "--compile-cache-dir", "/cache"]