Add GitHub Pages landing page

This commit is contained in:
Austin
2026-07-09 15:25:47 -05:00
parent e692e45ff4
commit 77fb0c4204
2 changed files with 171 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
name: Pages
# Deploys the static landing page in site/ to GitHub Pages.
# Runs on pushes to master that touch the site (or the workflow), and can be
# triggered manually from the Actions tab.
on:
push:
branches: [master]
paths:
- 'site/**'
- '.github/workflows/pages.yml'
workflow_dispatch: {}
permissions:
contents: read
pages: write
id-token: write
# Allow one Pages deployment at a time; don't cancel an in-progress deploy.
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
name: Build site
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Pages
uses: actions/configure-pages@v5
with:
enablement: true
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: site
deploy:
name: Deploy to Pages
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4