Skip to content

add landing page, .pkg installer, GitHub Pages deploy #1

add landing page, .pkg installer, GitHub Pages deploy

add landing page, .pkg installer, GitHub Pages deploy #1

Workflow file for this run

# Deploy landing page to GitHub Pages.
#
# Serves from the /docs directory on main branch.
# Custom domain: lawctl.dev (configure in repo settings + DNS)
name: Deploy Pages
on:
push:
branches: [main]
paths: [docs/**]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4