mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
f8bd506326
* [FEATURE] Embed static assets in Go binary * Refactor/consolidate code and specify public_html via configuration * Update docs and config template for assets * Update AUR package pre-requisites and systemd unit * Include static assets as Buildkite and GitHub artifacts * Remove references to PUBLIC_DIR * Only serve assets via embedded filesystem and remove configuration references * Update authelia-scripts helper to build the embedded filesystem * Mock the embedded filesystem for unit tests Add to gitignore to ensure this isn't overwritten. * Move go:generate to satisfy linter
28 lines
1.2 KiB
Bash
Executable File
28 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set +u
|
|
|
|
DOCKER_IMAGE=authelia/authelia
|
|
|
|
if [[ $BUILDKITE_LABEL == ":hammer_and_wrench: Unit Test" ]]; then
|
|
tar -czf authelia-public_html.tar.gz -C dist public_html
|
|
sha256sum authelia-public_html.tar.gz > authelia-public_html.tar.gz.sha256
|
|
fi
|
|
|
|
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-"${OS}"-"${ARCH}"
|
|
docker rm -f authelia-binary
|
|
if [[ $OS == "linux" ]]; then
|
|
tar -czf authelia-"${OS}"-"${ARCH}".tar.gz authelia-"${OS}"-"${ARCH}" authelia.service config.template.yml
|
|
else
|
|
tar -czf authelia-"${OS}"-"${ARCH}".tar.gz authelia-"${OS}"-"${ARCH}" config.template.yml
|
|
fi
|
|
sha256sum authelia-"${OS}"-"${ARCH}".tar.gz > authelia-"${OS}"-"${ARCH}".tar.gz.sha256
|
|
# Saving image for push to docker hub, darwin image is not required as OSX utilses linux manifests
|
|
if [[ $BUILDKITE_LABEL != ":docker: Build Image [darwin]" ]]; then
|
|
docker save ${DOCKER_IMAGE} | zstdmt -T0 -12 > authelia-image-"${ARCH}".tar.zst
|
|
fi
|
|
fi |