This commit is contained in:
parent
14f07e2609
commit
0e5bbbb2a0
2 changed files with 7 additions and 3 deletions
|
@ -16,6 +16,10 @@ cat > .docker.json <<EOF
|
|||
EOF
|
||||
export DOCKER_CONFIG=`pwd`/.docker.json
|
||||
|
||||
# Hack to circumvent "initializing source docker-archive:docker/linux.386.tar.gz: creating temporary file: open /var/tmp/docker-tar1213702538: no such file or directory"
|
||||
mkdir -p /var/tmp/
|
||||
|
||||
# Release
|
||||
nix run .#publish-static
|
||||
nix run .#publish-garage
|
||||
nix run .#publish-docker-hub
|
||||
|
|
|
@ -126,7 +126,7 @@
|
|||
publish-static = pkgs.writeScriptBin "albatros-push-static" ''
|
||||
RTAG=''${TAG:-$COMMIT}
|
||||
echo "selected release tag is $RTAG"
|
||||
${alba} static push -t albatros:$RTAG static/ 's3://download.deuxfleurs.org?endpoint=garage.deuxfleurs.fr&s3ForcePathStyle=true®ion=garage'
|
||||
${alba} static push -t albatros:$RTAG static/ 's3://download.deuxfleurs.org?endpoint=garage.deuxfleurs.fr&s3ForcePathStyle=true®ion=garage' 1>&2
|
||||
'';
|
||||
build-container = pkgs.writeScriptBin "albatros-build-container" ''
|
||||
nix build --print-build-logs .#packages.x86_64-linux.container -o docker/linux.amd64.tar.gz
|
||||
|
@ -137,12 +137,12 @@
|
|||
publish-garage = pkgs.writeScriptBin "albatros-publish-garage" ''
|
||||
RTAG=''${TAG:-$COMMIT}
|
||||
echo "selected release tag is $RTAG"
|
||||
${alba} container push -t albatros:$RTAG docker/ 's3://registry.deuxfleurs.org?endpoint=garage.deuxfleurs.fr&s3ForcePathStyle=true®ion=garage'
|
||||
${alba} container push -t albatros:$RTAG docker/ 's3://registry.deuxfleurs.org?endpoint=garage.deuxfleurs.fr&s3ForcePathStyle=true®ion=garage' 1>&2
|
||||
'';
|
||||
publish-docker-hub = pkgs.writeScriptBin "albatros-publish-dockerhub" ''
|
||||
RTAG=''${TAG:-$COMMIT}
|
||||
echo "selected release tag is $RTAG"
|
||||
${alba} container push -t albatros:$RTAG docker/ "docker://docker.io/superboum/albatros:$RTAG"
|
||||
${alba} container push -t albatros:$RTAG docker/ "docker://docker.io/superboum/albatros:$RTAG" 1>&2
|
||||
'';
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue