albatros/.albatros
Quentin d9b77a4f14
All checks were successful
Albatros build
debug ci
2023-03-16 13:22:06 +01:00

12 lines
342 B
Bash
Executable file

#!/usr/bin/env bash
set -euxo pipefail
nix build
if [[ $BRANCH == "main" && -f $SECRET_PATH ]]; then
mkdir -p /kaniko/.docker
cp $SECRET_PATH /kaniko/.docker/config.json
export HOME=/kaniko
sleep 6000
nix develop --command sh -c "executor --force --destination dxflrs/albatros:${COMMIT} --context dir://`pwd` --verbosity=debug"
fi