We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f91f0c9 commit 07fcee9Copy full SHA for 07fcee9
nix/cachix-push.nix
@@ -0,0 +1,14 @@
1
+{ self, ... }: {
2
+ perSystem = { pkgs, ... }: {
3
+ apps.cachix-push = {
4
+ type = "app";
5
+ program = "${pkgs.writeShellApplication {
6
+ name = "cachix-push";
7
+ meta.description = "Build all flake outputs and push them to cachix.";
8
+ text = ''
9
+ ${pkgs.omnix}/bin/om ci run ${self} | cachix push cardano-scaling
10
+ '';
11
+ }}/bin/cachix-push";
12
+ };
13
14
+}
0 commit comments