Skip to content

Static Site CI

Static Site CI #199

Workflow file for this run

#
# ===============================
# Do not edit this file directly!
# ===============================
#
# Your changes will be overwritten when the Upptime template updates (by default, weekly)
# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly.
#
# 🔼 Upptime @v1.44.0
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
# * Source: https://github.com/upptime/upptime
# * Docs and more: https://upptime.js.org
# * More by Anand Chowdhary: https://anandchowdhary.com
name: Static Site CI
on:
push:
paths:
- "assets/**"
schedule:
- cron: "0 1 * * *"
repository_dispatch:
types: [static_site]
workflow_dispatch:
concurrency:
group: ${{ github.repository }}-${{ github.head_ref || github.ref_name }}-upptime
cancel-in-progress: false
jobs:
release:
name: Build and deploy site
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
env:
GH_APP_PRIVATE_KEY: ${{ secrets.GH_APP_PRIVATE_KEY }}
steps:
- name: Create GitHub App token
id: app_token
if: ${{ vars.GH_APP_ID != '' && env.GH_APP_PRIVATE_KEY != '' }}
uses: actions/create-github-app-token@v3
with:
client-id: ${{ vars.GH_APP_ID }}
private-key: ${{ env.GH_APP_PRIVATE_KEY }}
- name: Clear GitHub App private key
if: ${{ always() }}
shell: bash
run: echo "GH_APP_PRIVATE_KEY=" >> "$GITHUB_ENV"
- name: Checkout
uses: actions/checkout@v6
with:
ref: ${{ github.head_ref || github.ref_name }}
token: ${{ steps.app_token.outputs.token || secrets.GH_PAT || github.token }}
- name: Generate site
uses: upptime/uptime-monitor@v1.44.0
with:
command: "site"
env:
GH_PAT: ${{ steps.app_token.outputs.token || secrets.GH_PAT || github.token }}
- uses: peaceiris/actions-gh-pages@v4
name: GitHub Pages Deploy
with:
github_token: ${{ steps.app_token.outputs.token || secrets.GH_PAT || github.token }}
publish_dir: "site/status-page/__sapper__/export/"
force_orphan: "false"
user_name: "Upptime Bot"
user_email: "73812536+upptime-bot@users.noreply.github.com"