We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88b1b05 commit d40068eCopy full SHA for d40068e
.github/workflows/nix.yaml
@@ -0,0 +1,17 @@
1
+name: Nix actions
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
9
+jobs:
10
+ nix-build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: DeterminateSystems/nix-installer-action@main
15
+ - uses: DeterminateSystems/magic-nix-cache-action@main
16
+ - name: Build Package
17
+ run: nix build .\#rucli
flake.nix
@@ -36,6 +36,5 @@
36
inherit (pkgs) rucli;
37
default = packages.rucli;
38
};
39
- legacyPackages = pkgs;
40
});
41
}
0 commit comments