11 lines
374 B
Bash
11 lines
374 B
Bash
#!/usr/bin/env bash
|
|
# Vie raportit git-pagesiin + commit-status linkillä
|
|
set -euo pipefail
|
|
|
|
REPORT_DIR="${1:-reports}"
|
|
PAGES_HOST="${PAGES_HOST:-ci-reports.helm-dev.keskikuja.site}"
|
|
|
|
REPORT_URL=$(bash "$(dirname $0)/publish-git-pages.sh" "$REPORT_DIR")
|
|
echo "Published: $REPORT_URL"
|
|
bash "$(dirname $0)/report-status.sh" success "Reports published" "$REPORT_URL" ci-report
|