This commit is contained in:
Robin Appelman 2025-05-30 16:44:17 +02:00
commit 2082799de0
2 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,6 @@ jobs:
authToken: "${{ secrets.ATTIC_TOKEN }}" authToken: "${{ secrets.ATTIC_TOKEN }}"
- run: nix flake check --keep-going - run: nix flake check --keep-going
semver: semver:
runs-on: nix runs-on: nix
steps: steps:

View file

@ -10,7 +10,8 @@
inputs.flakelight.follows = "flakelight"; inputs.flakelight.follows = "flakelight";
}; };
}; };
outputs = { mill-scale, ... }: mill-scale ./. { outputs = {mill-scale, ...}:
extraPaths = [ ./tests/configs ]; mill-scale ./. {
extraPaths = [./tests/configs];
}; };
} }