mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
107126929b
* Update README.md Provide badges and references to the AUR for Arch Linux Authelia packages. Closes #571 #572. * Add systemd unit file Include the unit in future release artifacts. * Remove CHANGELOG.md As of future releases Changelog details will dynamically be generated. * Update README.md Add badge for authelia-git package. * Update Changelog to only publish explicit Docker tag Do not include Major and Minor versions, as these will change over time.
15 lines
686 B
Bash
Executable File
15 lines
686 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
artifacts=()
|
|
|
|
for FILES in \
|
|
authelia-linux-amd64.tar.gz authelia-linux-amd64.tar.gz.sha256 \
|
|
authelia-linux-arm32v7.tar.gz authelia-linux-arm32v7.tar.gz.sha256 \
|
|
authelia-linux-arm64v8.tar.gz authelia-linux-arm64v8.tar.gz.sha256;
|
|
do
|
|
artifacts+=(-a "${FILES}")
|
|
done
|
|
|
|
echo "--- :github: Deploy artifacts for release: ${BUILDKITE_TAG}"
|
|
hub release create "${artifacts[@]}" -m "${BUILDKITE_TAG}\n\n## Changelog\n$(git log --oneline --pretty='* %h %s' $(git describe --abbrev=0 --tags $(git rev-list --tags --skip=1 --max-count=1))...$(git describe --abbrev=0 --tags))\n\n## Docker images\n* docker pull authelia/authelia:${BUILDKITE_TAG//v}" "${BUILDKITE_TAG}" |