Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] Documentation is now built from support/v5.13 branch (#1478) #1479

Merged
merged 1 commit into from
Mar 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Documentation build
on:
push:
branches:
- master
- support/v5.13
release:
types:
- released
Expand All @@ -12,7 +12,7 @@ on:

jobs:
documentation-build:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

steps:
- name: Install Dependencies
Expand All @@ -25,7 +25,7 @@ jobs:
with:
submodules: 'true'
fetch-depth: 0
ref: 'master'
ref: 'support/v5.13'

- name: Install Python requirements
shell: bash
Expand All @@ -42,8 +42,6 @@ jobs:
run: |
source ".venv_build/bin/activate"

export CC=/usr/bin/gcc-9
export CXX=/usr/bin/g++-9
mkdir "${{ runner.workspace }}/_build"
cd "${{ runner.workspace }}/_build"
cmake $GITHUB_WORKSPACE -G "Ninja" \
Expand Down Expand Up @@ -90,7 +88,7 @@ jobs:
working-directory: ${{ runner.workspace }}/_build

- name: Deploy Documentation
uses: peaceiris/actions-gh-pages@v3.6.4
uses: peaceiris/actions-gh-pages@v3
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading