mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-18 03:24:05 -08:00
a236166c71
Some downstream distros fail to compile Prometheus UI (Debian, NixOS). This is an attempt to store compiled UI in circleci for them to consume it. Currently we do not expose this outside of circleci. Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu> Co-authored-by: Julien Pivotto <roidelapluie@o11y.eu>
9 lines
150 B
Bash
Executable file
9 lines
150 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# compress static assets
|
|
|
|
set -euo pipefail
|
|
|
|
cd web/ui
|
|
find static -type f -name '*.gz' -print0 | xargs -0 tar cf static.tar.gz
|