Skip to content

Static Site CI

Static Site CI #391

Workflow file for this run

# This file was generated by upptime/[email protected]
#
# ===============================
# Do not edit this file directly!
# ===============================
#
# Your changes will be overwritten when the template updates (daily)
# Instead, change your .upptimerc.yml configuration: https://upptime.js.org/docs
name: Static Site CI
on:
schedule:
- cron: "0 1 * * *"
repository_dispatch:
types: [static_site]
workflow_dispatch:
jobs:
release:
name: Build and deploy site
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Generate site
uses: upptime/uptime-monitor@5b1a0e4262482a1710bb03d610192830862e700c # v1.30.1
with:
command: "site"
env:
GH_PAT: ${{ secrets.GITHUB_TOKEN }}
- uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 # v3.9.3
name: GitHub Pages Deploy
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: "site/status-page/__sapper__/export/"
user_name: "Upptime Bot"
user_email: "[email protected]"