Compare commits

...

2 commits

Author SHA1 Message Date
b636b8ff96 HACK: add rsync to core image
use to pre-populate PVC volume
2023-12-29 06:32:32 -05:00
b87b07beb1 HACK: auto-login 2023-12-29 06:32:13 -05:00
2 changed files with 3 additions and 1 deletions

View file

@ -27,6 +27,8 @@ pkgs.writeShellApplication {
set -x -e -o pipefail
attic login default $PLUGIN_BINARY_CACHE_TOKEN
$PLUGIN_SCRIPT
EOF

View file

@ -22,7 +22,7 @@ in
# '';
copyToRoot = pkgs.buildEnv {
name = "woodpecker-plugin-nix-attic-image-root";
paths = [pkgs.gnumake pkgs.attic-client entrypoint];
paths = [pkgs.gnumake pkgs.rsync pkgs.attic-client entrypoint];
pathsToLink = ["/bin"];
};