1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 01:06:17 +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:
Daniel Mach 2024-05-10 14:41:30 +02:00 committed by GitHub
commit 98a9b837fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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: