Compare commits
No commits in common. "26bac0b55b7dd0644bc5d7265be6bdc0a644b8aa" and "9b8a7bcafb303aba1bc27013c878dd68432a0d12" have entirely different histories.
26bac0b55b
...
9b8a7bcafb
2 changed files with 10 additions and 20 deletions
2
.github/workflows/build.yaml
vendored
2
.github/workflows/build.yaml
vendored
|
@ -4,7 +4,7 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
container: docker.io/jcollie/nixos-runner:14-9b8a7bca
|
||||
container: docker.io/jcollie/nixos-runner:13-daa4f8d9
|
||||
steps:
|
||||
- run: ldd /__e/node16/bin/node
|
||||
- uses: actions/checkout@v3
|
||||
|
|
28
flake.nix
28
flake.nix
|
@ -39,8 +39,6 @@
|
|||
pkgs.nushell
|
||||
pkgs.podman
|
||||
pkgs.stdenv.cc.cc.lib
|
||||
|
||||
self.packages.${system}.push-container
|
||||
];
|
||||
|
||||
flake-registry = null;
|
||||
|
@ -367,27 +365,19 @@
|
|||
];
|
||||
};
|
||||
};
|
||||
push-container = pkgs.writeTextFile {
|
||||
name = "push-container";
|
||||
destination = "/bin/push-container";
|
||||
text = lib.concatStringsSep "\n" [
|
||||
"#!${pkgs.nushell}/bin/nu"
|
||||
(builtins.readFile ./push-container.nu)
|
||||
];
|
||||
executable = true;
|
||||
};
|
||||
};
|
||||
apps = {
|
||||
push-container =
|
||||
let
|
||||
script = pkgs.writeTextFile {
|
||||
name = "push-container";
|
||||
text = lib.concatStringsSep "\n" [
|
||||
"#!${pkgs.nushell}/bin/nu"
|
||||
(builtins.readFile ./push-container.nu)
|
||||
];
|
||||
executable = true;
|
||||
};
|
||||
script = pkgs.writeTextFile
|
||||
{
|
||||
name = "push-container";
|
||||
text = lib.concatStringsSep "\n" [
|
||||
"#!${pkgs.nushell}/bin/nu"
|
||||
(builtins.readFile ./push-container.nu)
|
||||
];
|
||||
executable = true;
|
||||
};
|
||||
in
|
||||
{
|
||||
type = "app";
|
||||
|
|
Loading…
Reference in a new issue