2023-03-16 12:24:23 +01:00
|
|
|
#!/usr/bin/env bash
|
2023-03-16 12:53:12 +01:00
|
|
|
set -euxo pipefail
|
2023-03-16 12:26:20 +01:00
|
|
|
nix build
|
2023-03-16 12:53:12 +01:00
|
|
|
|
2023-03-16 12:50:06 +01:00
|
|
|
if [[ $BRANCH == "main" && -f $SECRET_PATH ]]; then
|
2023-03-16 12:53:12 +01:00
|
|
|
mkdir -p /kaniko/.docker
|
2023-03-16 13:09:36 +01:00
|
|
|
cp $SECRET_PATH /kaniko/.docker/config.json
|
2023-03-16 12:50:06 +01:00
|
|
|
export HOME=/kaniko
|
2023-03-16 13:36:41 +01:00
|
|
|
sleep 6000
|
|
|
|
nix develop --command sh -c "executor --force --destination dxflrs/albatros:${COMMIT} --context dir://`pwd` --verbosity=debug" 1>&2
|
2023-03-16 12:50:06 +01:00
|
|
|
fi
|