diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4f8a823..32bc3d0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,8 +23,8 @@ jobs: matrix: ${{ fromJson(needs.configure.outputs.matrix) }} steps: - uses: actions/checkout@v4 - - run: echo ${{matrix.output}} + - run: echo ${{matrix.name}} # - run: nixci - - run: nix build -L .#${{matrix.output}} + - run: nix build -L .#${{matrix.name}} #- run: nix build -L .#packages.aarch64-linux.default #- run: nix build -L .#packages.x86_64-linux.default diff --git a/flake.nix b/flake.nix index 710b6ca..e1d61f1 100644 --- a/flake.nix +++ b/flake.nix @@ -22,7 +22,7 @@ let inherit (inputs.nixpkgs) lib; perSystem = k: lib.concatLists (lib.flip lib.mapAttrsToList inputs.self.${k} (system: s: - builtins.map (name: { output = "${k}.${system}.${name}"; }) (lib.attrNames s) + builtins.map (name: { name = "${k}.${system}.${name}"; }) (lib.attrNames s) )); in {