mirror of
https://github.com/TemujinCalidius/SurvivorCore.git
synced 2026-08-14 00:58:01 +00:00
A static landing page (site/) deployed to GitHub Pages via Actions: - AI-generated brand: the survival-shield logo (favicon → 1024 + .ico) and an atmospheric campfire hero, on the docs/design-language palette. - Sections: hero, value props, feature grid (stats, inventory/crafting, gathering, combat, mobs & AI, no-code admin), an "in action" showcase with the demo videos, and a get-started/install panel. Dark translucent theme, responsive, self-contained. - README refreshed to v0.5.0 with the full feature set, badges, and the site link. The "See it in action" screenshot (site/assets/img/ui-showcase.png) drops in next. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
36 lines
773 B
YAML
36 lines
773 B
YAML
name: Deploy landing page
|
|
|
|
# Publishes site/ to GitHub Pages whenever the page changes on main.
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "site/**"
|
|
- ".github/workflows/pages.yml"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
# One deploy at a time; let a newer push supersede an in-flight run.
|
|
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
|
|
- uses: actions/configure-pages@v5
|
|
- uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
path: site
|
|
- id: deployment
|
|
uses: actions/deploy-pages@v4
|