Files
sats-price/.github/workflows/pages.yml
T
tyiuandClaude Sonnet 5 4891f7ecf9
Deploy website to GitHub Pages / deploy (push) Canceled after 0s
Add GitHub Pages deployment workflow for website
Publishes website/ via GitHub Actions on every push to main that
touches it, and configures the custom domain satsprice.app.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01AejmWBrdE3DbJWbXoaE3aX
2026-09-14 17:48:19 +03:00

38 lines
777 B
YAML

name: Deploy website to GitHub Pages
on:
push:
branches: ["main"]
paths:
- "website/**"
- ".github/workflows/pages.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "./website"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4