From 6719a8ae1607b7f073e0b2c57b5db68cc0e430c3 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Mon, 16 Jan 2023 19:04:02 +0000 Subject: [PATCH] I think the artifact uploading hates symlinks Signed-off-by: Xe Iaso --- .github/workflows/nix.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nix.yaml b/.github/workflows/nix.yaml index afd97a0..d4c50e0 100644 --- a/.github/workflows/nix.yaml +++ b/.github/workflows/nix.yaml @@ -34,8 +34,10 @@ jobs: - name: "Portable service build" run: | nix build .#portable-service + mkdir -p var + cp ./result/*.raw ./var - uses: actions/upload-artifact@v3 with: name: portable-service - path: ./result/* + path: ./var/*.raw