diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-10 19:28:33 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-05-10 19:28:33 -0700 |
commit | d0e3f1bd895f3b4f99840f989f528a4669fea309 (patch) | |
tree | 303a64db0a3a7f3768f0554ec40846746269755b | |
parent | another try (diff) | |
download | fcuny.net-d0e3f1bd895f3b4f99840f989f528a4669fea309.tar.gz |
i don't think it will work
-rw-r--r-- | .drone.yml | 2 | ||||
-rw-r--r-- | flake.nix | 18 |
2 files changed, 11 insertions, 9 deletions
diff --git a/.drone.yml b/.drone.yml index 67bf620..0031ad9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -14,4 +14,4 @@ steps: FLY_API_TOKEN: from_secret: FLY_API_TOKEN commands: - - nix shell --command bash ./scripts/deploy.sh + - nix run .#deploy diff --git a/flake.nix b/flake.nix index 7d5a4b2..1c9b9dd 100644 --- a/flake.nix +++ b/flake.nix @@ -22,6 +22,7 @@ ''; dontInstall = true; }; + defaultApp = pkgs.writers.writeBashBin "run-hugo" '' set -e set -o pipefail @@ -29,14 +30,15 @@ hugo server -D ''; - deploy = pkgs.writers.writeBashBin "run-deploy" '' - set -e - set -o pipefile - export PATH=${ - pkgs.lib.makeBinPath [ pkgs.hugo pkgs.git pkgs.jq pkgs.flyctl ] - } - ./scripts/deploy.sh - ''; + apps = { + deploy = pkgs.pkgs.writeShellScriptBin "run-deploy" '' + set -euxo pipefail + export PATH=${ + pkgs.lib.makeBinPath [ pkgs.hugo pkgs.git pkgs.jq pkgs.flyctl ] + }:$PATH + ./scripts/deploy.sh + ''; + }; devShell = pkgs.mkShell { buildInputs = with pkgs; [ hugo flyctl git jq ]; }; |