diff --git a/.github/workflows/test-core-linux.yml b/.github/workflows/test-core-linux.yml index d07bdebb9..614b2e8ba 100644 --- a/.github/workflows/test-core-linux.yml +++ b/.github/workflows/test-core-linux.yml @@ -57,10 +57,17 @@ jobs: - name: Pull BW linux ubuntu test image run: docker pull ghcr.io/bunkerity/ubuntu-tests:${{ inputs.RELEASE }} - name: Copy deb file to host + if: inputs.RELEASE != '1.6' run: | container_id=$(docker create "ghcr.io/bunkerity/ubuntu-tests:${{ inputs.RELEASE }}") docker cp "$container_id:/opt/bunkerweb_${{ inputs.RELEASE }}-1_amd64.deb" "/tmp/bunkerweb.deb" docker rm "$container_id" + - name: Copy deb file to host 1.6 + if: inputs.RELEASE == '1.6' + run: | + container_id=$(docker create "ghcr.io/bunkerity/ubuntu-tests:${{ inputs.RELEASE }}") + docker cp "$container_id:/opt/bunkerweb_dev-1_amd64.deb" "/tmp/bunkerweb.deb" + docker rm "$container_id" - name: Install NGINX run: | export NEEDRESTART_SUSPEND=1 diff --git a/.github/workflows/tests-ui-linux.yml b/.github/workflows/tests-ui-linux.yml index 07aa0b8d1..0f0690be0 100644 --- a/.github/workflows/tests-ui-linux.yml +++ b/.github/workflows/tests-ui-linux.yml @@ -57,10 +57,17 @@ jobs: - name: Pull BW linux ubuntu test image run: docker pull ghcr.io/bunkerity/ubuntu-tests:${{ inputs.RELEASE }} - name: Copy deb file to host + if: inputs.RELEASE != '1.6' run: | container_id=$(docker create "ghcr.io/bunkerity/ubuntu-tests:${{ inputs.RELEASE }}") docker cp "$container_id:/opt/bunkerweb_${{ inputs.RELEASE }}-1_amd64.deb" "/tmp/bunkerweb.deb" docker rm "$container_id" + - name: Copy deb file to host 1.6 + if: inputs.RELEASE == '1.6' + run: | + container_id=$(docker create "ghcr.io/bunkerity/ubuntu-tests:${{ inputs.RELEASE }}") + docker cp "$container_id:/opt/bunkerweb_dev-1_amd64.deb" "/tmp/bunkerweb.deb" + docker rm "$container_id" - name: Install NGINX run: | export NEEDRESTART_SUSPEND=1