diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 733355a..90271d3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,10 +20,11 @@ jobs: needs: configure runs-on: self-hosted strategy: - matrix: ${{ fromJson(needs.configure.outputs.matrix) }} + matrix: + out: ${{ fromJson(needs.configure.outputs.matrix) }} steps: - uses: actions/checkout@v4 - - run: echo ${{matrix}} + - run: echo ${{matrix.out}} # - run: nixci # - run: nix build -L .#${{matrix.name}} # - run: echo .#${{matrix.x.name}} diff --git a/flake.nix b/flake.nix index bff7b52..db27cdb 100644 --- a/flake.nix +++ b/flake.nix @@ -25,13 +25,11 @@ builtins.map (name: "${k}.${system}.${name}") (lib.attrNames s) )); in - { - include = lib.concatLists [ - (perSystem "packages") - #(perSystem "devShells") - #(perSystem "checks") - ]; - }; + lib.concatLists [ + (perSystem "packages") + #(perSystem "devShells") + #(perSystem "checks") + ]; perSystem = { self', system, lib, config, pkgs, ... }: { # Our only Haskell project. You can have multiple projects, but this template # has only one.