From 46fa797473c176df909de12658b10897c25d11d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Sun, 13 Sep 2026 17:51:36 -0400 Subject: [PATCH] ci(release): build and publish wipe.img (FR-080) The release workflow built rescue.img and memtest.img only, while the README documents three USB images. Add the build-wipe-usb.sh step and compress its artifact too. --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 973667f..24ff49c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,10 +37,15 @@ jobs: run: | ./bin/build-memtest-usb.sh --output dist/memtest.img + - name: Build Disk Wipe wipe.img + run: | + ./bin/build-wipe-usb.sh --output dist/wipe.img + - name: Compress artifacts run: | xz -T0 -9 dist/rescue.img xz -T0 -9 dist/memtest.img + xz -T0 -9 dist/wipe.img (cd dist && sha256sum *.img.xz > SHA256SUMS) - name: Generate build provenance attestation