From 42755811aa6a95d6a91f61bd8fdce80269675fe3 Mon Sep 17 00:00:00 2001 From: Syping Date: Fri, 22 Mar 2024 02:37:29 +0100 Subject: [PATCH] CI: add openSUSE Leap 15.5 --- .github/workflows/{el.yml => linux-rpm.yml} | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) rename .github/workflows/{el.yml => linux-rpm.yml} (79%) diff --git a/.github/workflows/el.yml b/.github/workflows/linux-rpm.yml similarity index 79% rename from .github/workflows/el.yml rename to .github/workflows/linux-rpm.yml index 5515982..b51f55d 100644 --- a/.github/workflows/el.yml +++ b/.github/workflows/linux-rpm.yml @@ -1,11 +1,19 @@ -name: Enterprise Linux +name: Linux on: push jobs: Release: runs-on: ubuntu-latest strategy: matrix: - version: [el7, el8, el9] + include: + - name: Enterprise Linux 7 + version: el7 + - name: Enterprise Linux 8 + version: el8 + - name: Enterprise Linux 9 + version: el9 + - name: openSUSE Leap 15.5 + version: lp155 steps: - name: Cloning uses: actions/checkout@v4 @@ -32,6 +40,6 @@ jobs: - name: Upload uses: actions/upload-artifact@v4 with: - name: Enterprise Linux ${{matrix.version}} + name: ${{matrix.name}} path: | ${{github.workspace}}/rpms/x86_64/*.rpm