Skip to content

Home: clearer icons for the AI Agents & LLM section #9

Home: clearer icons for the AI Agents & LLM section

Home: clearer icons for the AI Agents & LLM section #9

Workflow file for this run

name: Deploy Home
# Deploys the home product family. Push to `production` -> production,
# push to `main` -> staging. Manual runs choose the environment.
on:
push:
branches: [ production, main ]
paths:
- 'content/sites/groupdocs/home/**'
workflow_dispatch:
inputs:
environment:
description: 'Target environment'
required: true
default: production
type: choice
options:
- staging
- production
jobs:
deploy:
uses: ./.github/workflows/deploy_product.yml
with:
product_family: home
environment: ${{ github.event_name == 'workflow_dispatch' && inputs.environment || (github.ref_name == 'production' && 'production' || 'staging') }}
# Invalidate the bucket-root Markdown/llms/404 outputs too, not just the HTML
# (otherwise CloudFront serves a stale /index.md, /llms.txt, /404.html …).
invalidate_paths: '/index.html /index.md /llms.txt /llms-full.txt /404.html'
max_deletes: '0'
secrets: inherit