diff options
author | Alan Pearce | 2024-04-20 00:20:34 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-20 00:20:34 +0200 |
commit | 3da735c4e72f8de390e5f4f0df63476cac43b6b1 (patch) | |
tree | 1641c63187b03910bd96151d649c3c2883c02513 /nix/scripts.nix | |
parent | 98cd9b3d285219fea65961f5cf551c42adfd22e9 (diff) | |
download | website-3da735c4e72f8de390e5f4f0df63476cac43b6b1.tar.lz website-3da735c4e72f8de390e5f4f0df63476cac43b6b1.tar.zst website-3da735c4e72f8de390e5f4f0df63476cac43b6b1.zip |
use long git hashes for docker tags
Diffstat (limited to 'nix/scripts.nix')
-rw-r--r-- | nix/scripts.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/nix/scripts.nix b/nix/scripts.nix index 94e4d85..e48de76 100644 --- a/nix/scripts.nix +++ b/nix/scripts.nix @@ -43,7 +43,9 @@ with pkgs; [ '') (writeShellScriptBin "deploy" '' set -eu - push-to-registry docker://${image} - ${pkgs.flyctl}/bin/flyctl deploy + TAG=$(git rev-parse HEAD) + IMAGE=${image}:$TAG + push-to-registry docker://$IMAGE + ${pkgs.flyctl}/bin/flyctl deploy --image $IMAGE '') ] |