From 0dc290cb4e485b1ce1f63f815a48fbf6da109550 Mon Sep 17 00:00:00 2001 From: David Donchez Date: Thu, 6 Jun 2024 14:57:49 +0200 Subject: [PATCH] feat: add sysupdate config files to GH release --- .github/workflows/release.yaml | 2 ++ files/noop.conf | 7 +++++++ files/zfs.conf | 11 +++++++++++ 3 files changed, 20 insertions(+) create mode 100644 files/noop.conf create mode 100644 files/zfs.conf diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 39ce93b..3076f5e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -170,6 +170,7 @@ jobs: files: | SHA256SUMS *.raw + files/*.conf - name: Draft Release uses: softprops/action-gh-release@v1 if: env.TAG_TYPE == 'alphanumeric' @@ -178,3 +179,4 @@ jobs: files: | SHA256SUMS *.raw + files/*.conf diff --git a/files/noop.conf b/files/noop.conf new file mode 100644 index 0000000..d1e9b09 --- /dev/null +++ b/files/noop.conf @@ -0,0 +1,7 @@ +[Source] +Type=regular-file +Path=/ +MatchPattern=invalid@v.raw +[Target] +Type=regular-file +Path=/ \ No newline at end of file diff --git a/files/zfs.conf b/files/zfs.conf new file mode 100644 index 0000000..f3bc07e --- /dev/null +++ b/files/zfs.conf @@ -0,0 +1,11 @@ +[Transfer] +Verify=false +[Source] +Type=url-file +Path=https://github.com/enix/sysext-bakery/releases/latest/download +MatchPattern=zfs-@v-%w.raw +[Target] +InstancesMax=3 +Type=regular-file +Path=/opt/extensions/zfs +CurrentSymlink=/etc/extensions/zfs.raw \ No newline at end of file