From 16db4a3a85acdd847bb090e4f9c9fffe481419f2 Mon Sep 17 00:00:00 2001 From: Alexander Lohnau Date: Sun, 3 Nov 2024 15:39:50 +0100 Subject: [PATCH] Allow unsigned rpms for zypper test command --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index acf7f62..775235f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -138,7 +138,7 @@ jobs: elif [[ "${{ matrix.os.name }}" == "fedora" ]]; then dnf install -y "$binary_file" elif [[ "${{ matrix.os.name }}" == "opensuse" ]]; then - zypper install -y "$binary_file" + zypper install -y --allow-unsigned-rpm "$binary_file" else echo "Unsupported OS" exit 1