1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-08-04 14:43:38 +02:00

Merge pull request #1564 from dmach/gha-fix-rawhide-dnf5

GHA: Install dnf5-plugins instead of dnf-plugins-core where dnf5 is installed
This commit is contained in:
2024-05-10 14:41:30 +02:00
committed by GitHub

View File

@@ -59,7 +59,9 @@ jobs:
run: |
dnf -y makecache
dnf -y distro-sync
dnf -y install git-lfs rpm-build dnf-plugins-core
dnf -y install git-lfs rpm-build
rpm -q dnf5 >/dev/null || dnf -y install dnf-plugins-core || :
rpm -q dnf5 >/dev/null && dnf -y install dnf5-plugins || :
- uses: actions/checkout@v3
with: