From 70f19bf988591440d8eca6b29726e981115a0fec Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Mon, 20 Feb 2023 17:10:50 +0000 Subject: [PATCH] Update test_and_publish.yml --- .github/workflows/test_and_publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_and_publish.yml b/.github/workflows/test_and_publish.yml index 9100bd9f..ab154c6c 100644 --- a/.github/workflows/test_and_publish.yml +++ b/.github/workflows/test_and_publish.yml @@ -34,8 +34,10 @@ jobs: - name: Get the Tag or Branch run: echo "GH_REF_SHORT=$(echo ${GITHUB_REF##*/})" >> $GITHUB_ENV - - name: Install packages - run: apk add openssh xz tmux bash curl sudo gcc make musl-dev perl-dev unzip jq + - name: Install base packages + run: apk add tmux bash curl sudo + - name: Install other packages + run: apk add openssh xz gcc make musl-dev perl-dev unzip jq - name: Install fake apt-get run: echo 'if [ "$1" == "update" ]; then exec apk update; else exec apk add openssh xz; fi' > /usr/local/bin/apt-get && chmod +x /usr/local/bin/apt-get