From 7b2993bbdf3af7e173bb90a0cddf4b47e51b4575 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Wed, 26 May 2021 08:23:55 -0700 Subject: [PATCH] Build an actual ISO image and then upload the artifact --- .github/workflows/build.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0cd6a19..7640f14 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -36,5 +36,10 @@ jobs: - name: Build ISO run: | - #$image=$(guix system image installer.scm) - guix system image installer.scm --image-size=5G + image=$(guix system image -t iso9660 installer.scm) + cp $image ./guix-installer.iso + + - uses: actions/upload-artifact@v2 + with: + name: guix-installer + path: guix-installer.iso