diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index e1294cd16..5e9163870 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -54,16 +54,16 @@ jobs: COPY packages.list packages.list EOF - [[ "${{ matrix.release }}" == "bionic" ]] && \ + [[ "${{ matrix.distribution }}" == "ubuntu" ]] && \ cat <> Dockerfile - RUN apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common && \ + RUN DEBIAN_FRONTEND=noninteractive apt-get --quiet update && \ + DEBIAN_FRONTEND=noninteractive apt-get --quiet install -y software-properties-common && \ add-apt-repository -y ppa:libretime/libretime EOF cat <> Dockerfile - RUN apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get -y install \ + RUN DEBIAN_FRONTEND=noninteractive apt-get --quiet update && \ + DEBIAN_FRONTEND=noninteractive apt-get --quiet install -y \ git \ python3 \ python3-pip \