Skip to content

Commit

Permalink
fix(flake): only tag with git sha
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
  • Loading branch information
cameronraysmith committed Jul 7, 2024
1 parent 5c7e001 commit 21bfd06
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -260,9 +260,9 @@
version = builtins.getEnv "VERSION";
images = builtins.map (sys: self.packages.${sys}.containerImage) includedSystems;
tags = [
(builtins.getEnv "GIT_SHA_SHORT")
# (builtins.getEnv "GIT_SHA_SHORT")
(builtins.getEnv "GIT_SHA")
(builtins.getEnv "GIT_REF")
# (builtins.getEnv "GIT_REF")
];
};

Expand Down Expand Up @@ -298,9 +298,9 @@
version = builtins.getEnv "VERSION";
images = builtins.map (sys: self.packages.${sys}.devcontainerImage) includedSystems;
tags = [
(builtins.getEnv "GIT_SHA_SHORT")
# (builtins.getEnv "GIT_SHA_SHORT")
(builtins.getEnv "GIT_SHA")
(builtins.getEnv "GIT_REF")
# (builtins.getEnv "GIT_REF")
];
};

Expand Down Expand Up @@ -330,9 +330,9 @@
version = builtins.getEnv "VERSION";
images = builtins.map (sys: self.packages.${sys}.codeImage) includedSystems;
tags = [
(builtins.getEnv "GIT_SHA_SHORT")
# (builtins.getEnv "GIT_SHA_SHORT")
(builtins.getEnv "GIT_SHA")
(builtins.getEnv "GIT_REF")
# (builtins.getEnv "GIT_REF")
];
};

Expand Down Expand Up @@ -362,9 +362,9 @@
version = builtins.getEnv "VERSION";
images = builtins.map (sys: self.packages.${sys}.jupyterImage) includedSystems;
tags = [
(builtins.getEnv "GIT_SHA_SHORT")
# (builtins.getEnv "GIT_SHA_SHORT")
(builtins.getEnv "GIT_SHA")
(builtins.getEnv "GIT_REF")
# (builtins.getEnv "GIT_REF")
];
};
};
Expand Down

0 comments on commit 21bfd06

Please sign in to comment.