From de5bf573cdda553933e0bb179e16c15de474304d Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Thu, 6 Aug 2026 22:23:42 -0500 Subject: [PATCH] Unpack artifacts --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b122389..152a6be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,10 +37,13 @@ jobs: run: |- nix build "nixpkgs#coreutils" echo "DATE=$(./result/bin/date +'%Y-%m-%d-%H')" >> "$GITHUB_OUTPUT" + for d in $(nix run "nixpkgs#findutils" -- -maxdepth 1 -type d); do + nix run "nixpkgs#unzip" -- -d . "${d}/*.zip" + done ls -lR - name: Create release uses: https://gitea.com/actions/gitea-release-action@v1 with: tag_name: ${{ steps.date.outputs.DATE }} files: |- - **/*.tar.xz + *.tar.xz