diff --git a/.github/workflows/dev-tools.yml b/.github/workflows/dev-tools.yml index cd5a09fcb..58f7e286d 100644 --- a/.github/workflows/dev-tools.yml +++ b/.github/workflows/dev-tools.yml @@ -55,7 +55,7 @@ jobs: COPY packages.list packages.list EOF - [[ "${{ matrix.release }}" =~ "focal" ]] && \ + [[ "${{ matrix.release }}" == "focal" ]] && \ cat <> Dockerfile RUN DEBIAN_FRONTEND=noninteractive apt-get --quiet update && \ DEBIAN_FRONTEND=noninteractive apt-get --quiet install -y software-properties-common && \ diff --git a/playout/tests/liquidsoap/version_test.py b/playout/tests/liquidsoap/version_test.py index 566cfc704..fba97a820 100644 --- a/playout/tests/liquidsoap/version_test.py +++ b/playout/tests/liquidsoap/version_test.py @@ -28,7 +28,7 @@ def test_parse_liquidsoap_version(version, expected): @pytest.mark.skipif(getenv("CI") != "true", reason="requires liquidsoap") def test_get_liquidsoap_version(): LIQUIDSOAP_VERSION_MAP = { - "focal": (1, 4, 1), + "focal": (1, 4, 2), "bullseye": (1, 4, 3), "jammy": (2, 0, 2), }