mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
92ec00d7c5
* feat: builds with gox and buildx This change builds all of Authelia respective binaries in parallel within a single step and distributes as necessary to subsequent steps, we now also build and distribute for the following OS/Architecture: freebsd/amd64. Our CI/CD pipeline now also utilises docker buildx as a default for builds and pushes. * refactor: clean up docker helper * Remove `authelia-scripts docker push-image` command as all pushes will be performed with buildx and manifests * Rename the --arch flag to --container * Add Dockerfile.dev for users that want to build an Authelia container from source without utilising suites * Set Dockerfile.dev as default for `authelia-scripts docker build` command * refactor: variant -> container
37 lines
1.4 KiB
Bash
Executable File
37 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
artifacts=()
|
|
|
|
for FILE in \
|
|
authelia-linux-amd64.tar.gz authelia-linux-amd64.tar.gz.sha256 \
|
|
authelia-linux-arm.tar.gz authelia-linux-arm.tar.gz.sha256 \
|
|
authelia-linux-arm64.tar.gz authelia-linux-arm64.tar.gz.sha256 \
|
|
authelia-freebsd-amd64.tar.gz authelia-freebsd-amd64.tar.gz.sha256 \
|
|
authelia-public_html.tar.gz authelia-public_html.tar.gz.sha256;
|
|
do
|
|
# Add the version to the artifact name
|
|
mv ${FILE} ${FILE/authelia-/authelia-${BUILDKITE_TAG}-}
|
|
artifacts+=(-a "${FILE/authelia-/authelia-${BUILDKITE_TAG}-}")
|
|
done
|
|
|
|
for FILE in \
|
|
authelia_amd64.deb authelia_amd64.deb.sha256 \
|
|
authelia_arm64.deb authelia_arm64.deb.sha256 \
|
|
authelia_armhf.deb authelia_armhf.deb.sha256;
|
|
do
|
|
# Add the version to the artifact name
|
|
mv ${FILE} ${FILE/authelia_/authelia_${BUILDKITE_TAG}_}
|
|
artifacts+=(-a "${FILE/authelia_/authelia_${BUILDKITE_TAG}_}")
|
|
done
|
|
|
|
echo "--- :github: Deploy artifacts for release: ${BUILDKITE_TAG}"
|
|
hub release create "${BUILDKITE_TAG}" "${artifacts[@]}" -F <(echo -e "${BUILDKITE_TAG}\n$(conventional-changelog -p angular -o /dev/stdout -r 2 | sed -e '1,3d')\n\n### Docker Container\n* \`docker pull authelia/authelia:${BUILDKITE_TAG//v}\`\n* \`docker pull ghcr.io/authelia/authelia:${BUILDKITE_TAG//v}\`"); EXIT=$?
|
|
|
|
if [[ "${EXIT}" == 0 ]];
|
|
then
|
|
exit
|
|
else
|
|
hub release delete "${BUILDKITE_TAG}" && false
|
|
fi
|