From 9b1a09032903dda7b3c03776703961ee58c782c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Thu, 18 Apr 2024 22:29:10 +0200 Subject: [PATCH] fix nix run args --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 972ef470..e92211ee 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: include: - target: x86_64-linux os: ubuntu-latest - - target: arm64-linux + - target: aarch64-linux os: ubuntu-latest - target: x86_64-windows os: ubuntu-latest @@ -33,4 +33,4 @@ jobs: authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - name: Run app run: | - nix run -L .#${{ matrix.target }} + nix run -L .#${{ matrix.target }} -- --version