Skip to content

Deploy to GitHub Pages #101

Deploy to GitHub Pages

Deploy to GitHub Pages #101

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
paths: [docs/**]
workflow_run:
workflows: ["Update Foundry llms.txt Documentation"]
types: [completed]
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
# Only run if workflow_dispatch, push, or workflow_run succeeded
if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v3
with:
path: docs
- id: deployment
uses: actions/deploy-pages@v4