mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
1059551133
* Optimise deploy artifacts step authelia-scripts is not required to publish GitHub artifacts as we utilise [Hub](https://hub.github.com/), this should save ~10 seconds in this step. * Specify release number in pipeline * Change buildkite and github published artifacts back to gzip * Update README.md
19 lines
747 B
Bash
Executable File
19 lines
747 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set +u
|
|
|
|
DOCKER_IMAGE=authelia/authelia
|
|
|
|
if [[ $BUILDKITE_LABEL =~ ":docker: Build Image" ]];
|
|
then
|
|
echo "--- :docker: Saving artifacts for :buildkite: :docker: :github: releases"
|
|
# Save binary for buildkite and github artifacts
|
|
docker create --name authelia-binary $DOCKER_IMAGE:latest
|
|
docker cp authelia-binary:/usr/app/authelia ./authelia-linux-"${ARCH}"
|
|
docker cp authelia-binary:/usr/app/public_html ./
|
|
docker rm -f authelia-binary
|
|
tar -czf authelia-linux-"${ARCH}".tar.gz authelia-linux-"${ARCH}" public_html
|
|
sha256sum authelia-linux-"${ARCH}".tar.gz > authelia-linux-"${ARCH}".tar.gz.sha256
|
|
# Saving image for push to docker hub
|
|
docker save $DOCKER_IMAGE | zstdmt -T0 -12 > authelia-image-"${ARCH}".tar.zst
|
|
fi |