Static Site CI was building the Sapper export successfully but had no step to publish it — `gh-pages` branch never existed so GitHub Pages couldn't serve anything. Matches the canonical Upptime template: - static-site.yml: adds peaceiris/actions-gh-pages@v4 step publishing site/status-page/__sapper__/export/ to gh-pages - All 5 workflows: pin upptime/uptime-monitor to @v1.41.0 instead of @master (reproducibility + matches upstream template expectations)
27 lines
567 B
YAML
27 lines
567 B
YAML
name: Summary CI
|
|
on:
|
|
repository_dispatch:
|
|
types: [summary]
|
|
schedule:
|
|
# Daily summary of past-day uptime posted to the README badges.
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
name: Generate README + summary
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: upptime/uptime-monitor@v1.41.0
|
|
with:
|
|
command: "readme"
|
|
env:
|
|
GH_PAT: ${{ secrets.GH_PAT || secrets.GITHUB_TOKEN }}
|
|
|
|
permissions:
|
|
contents: write
|
|
issues: write
|