Skip to content

Add migration guide (#64) #72

Add migration guide (#64)

Add migration guide (#64) #72

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
# Allow this job to clone the repo and create a page deployment
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
env:
CPPDOC_SITE: https://cppdoc.cc
steps:
- name: Checkout source code
uses: actions/checkout@v6
- name: Build and upload artifacts
uses: withastro/action@v5
deploy:
needs: build
runs-on: ubuntu-latest
if: github.repository == 'cppdoc-cc/cppdoc'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4