mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
6ccc92e47e
Co-authored-by: Victor Büttner <victor@0x23.dk> Co-authored-by: Clément Michaud <clement.michaud34@gmail.com>
20 lines
653 B
Bash
Executable File
20 lines
653 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set +u
|
|
|
|
if [[ $BUILDKITE_LABEL =~ ":selenium:" ]]; then
|
|
DEFAULT_ARCH=coverage
|
|
echo "--- :docker: Extract, load and tag build container"
|
|
buildkite-agent artifact download "authelia-image-${DEFAULT_ARCH}*" .
|
|
zstdcat authelia-image-${DEFAULT_ARCH}.tar.zst | docker load
|
|
docker tag authelia/authelia authelia:dist
|
|
fi
|
|
|
|
if [[ $BUILDKITE_LABEL =~ ":docker: Deploy Image" ]]; then
|
|
buildkite-agent artifact download "authelia-image-${ARCH}*" .
|
|
zstdcat authelia-image-"${ARCH}".tar.zst | docker load
|
|
fi
|
|
|
|
if [[ $BUILDKITE_LABEL == ":github: Deploy Artifacts" ]]; then
|
|
buildkite-agent artifact download "authelia-*.tar.gz*" .
|
|
fi |