Skip to content

chore(deps): update https://github.com/microsoft/vcpkg digest to 65be… #137

chore(deps): update https://github.com/microsoft/vcpkg digest to 65be…

chore(deps): update https://github.com/microsoft/vcpkg digest to 65be… #137

Workflow file for this run

name: Pages
on:
workflow_dispatch:
push:
branches:
- master
- beta
- alpha
- '*.x'
release:
types:
- published
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FORCE_COLOR: 3
jobs:
pages:
name: Deploy to GitHub Pages
runs-on: ubuntu-24.04
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ github.head_ref }}
- name: Cache
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
with:
path: |
~/vcpkg
~/.cache/pip
~/.cache/vcpkg
key: cd-pages-${{ hashFiles('vcpkg.json') }}
restore-keys: cd-pages-${{ hashFiles('vcpkg.json') }}
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: 3.x
- name: Build Docs
run: pipx run nox -s docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html