mirror of
https://github.com/prometheus/alertmanager
synced 2024-12-17 20:05:17 +00:00
74ebd3d175
Enable frontend consumption by downstreams, like debian and nixos Signed-off-by: Julien Pivotto <roidelapluie@o11y.eu>
10 lines
200 B
Bash
Executable File
10 lines
200 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# compress static assets
|
|
|
|
set -euo pipefail
|
|
|
|
version="$(< VERSION)"
|
|
mkdir -p .tarballs
|
|
tar czf .tarballs/alertmanager-web-ui-${version}.tar.gz ui/app/script.js ui/app/index.html
|