Skip to content

feat(web): move site to www.flashml.ai, add SEO meta and new tagline #28

feat(web): move site to www.flashml.ai, add SEO meta and new tagline

feat(web): move site to www.flashml.ai, add SEO meta and new tagline #28

Workflow file for this run

name: Deploy web to GitHub Pages
on:
push:
branches: [main]
paths: # redeploy only when web files change
- "index.html"
- "assets/**"
- "update/**" # desktop updater manifests (stable.json / beta.json)
- "CNAME"
- "robots.txt"
- "sitemap.xml"
- ".github/workflows/deploy-pages.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: . # repo root is the site root (index.html + update/ live at root)
- id: deployment
uses: actions/deploy-pages@v4