diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c27393..4378705 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - fedora_version: [41, 42, 43] + fedora_version: [41, 42, 43, 44] container: image: fedora:${{ matrix.fedora_version }} @@ -103,4 +103,4 @@ jobs: name: srpm-fedora-${{ matrix.fedora_version }} path: ~/rpmbuild/SRPMS/libdnf5-plugin-snapper-*.src.rpm retention-days: 30 - compression-level: 0 \ No newline at end of file + compression-level: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f4102a4..ae825d4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -105,7 +105,7 @@ jobs: strategy: fail-fast: false matrix: - fedora_version: [42, 43] + fedora_version: [42, 43, 44] container: image: fedora:${{ matrix.fedora_version }} @@ -205,6 +205,18 @@ jobs: name: srpm-fc43 path: artifacts/ + - name: Download FC44 RPMs + uses: actions/download-artifact@v4 + with: + name: rpms-fc44 + path: artifacts/ + + - name: Download FC44 SRPM + uses: actions/download-artifact@v4 + with: + name: srpm-fc44 + path: artifacts/ + - name: List all artifacts run: | echo "Release artifacts:" diff --git a/libdnf5-plugin-snapper.spec b/libdnf5-plugin-snapper.spec index 71ee849..d13a180 100644 --- a/libdnf5-plugin-snapper.spec +++ b/libdnf5-plugin-snapper.spec @@ -5,7 +5,7 @@ Summary: Snapper plugin for DNF5 - automatic filesystem snapshots License: LGPL-2.1-or-later URL: https://github.com/plenvorik/libdnf5-plugin-snapper -Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz +Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz BuildRequires: cmake >= 3.18 BuildRequires: gcc-c++ @@ -17,7 +17,6 @@ BuildRequires: catch2-devel Requires: libdnf5%{?_isa} >= 5.0 Requires: snapper-libs%{?_isa} >= 0.10 -Requires: dnf5 # Suggests the old plugin should be removed if installed Obsoletes: python3-dnf-plugin-snapper < 5.0 @@ -54,7 +53,6 @@ Features: %license COPYING %doc README.md %doc CHANGELOG.md -%dir %{_sysconfdir}/dnf/libdnf5-plugins %config(noreplace) %{_sysconfdir}/dnf/libdnf5-plugins/snapper.conf %{_libdir}/libdnf5/plugins/snapper.so @@ -67,4 +65,4 @@ Features: - Code cleanup and fix snapshot read-only behavior * Tue Sep 30 2025 Andre Herrlich - 1.0.0-1 -- Initial release with automatic pre/post transaction snapshots via libsnapper API \ No newline at end of file +- Initial release with automatic pre/post transaction snapshots via libsnapper API