Skip to content

fix artifact upload path #9

fix artifact upload path

fix artifact upload path #9

Workflow file for this run

name: Build and deploy docs
on:
push:
branches: [ "main" ]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set reusable strings
id: strings
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Install doxygen
uses: ssciwr/doxygen-install@v1.2.0
with:
version: '1.9.5'
- name: Configure CMake
run: >
cmake -B ${{ steps.strings.outputs.build-output-dir }}
-DBUILD_DOCUMENTATION=1
-DBUILD_TESTING=0
-DBUILD_EXAMPLES=0
-S ${{ github.workspace }}
- name: Build doxygen docs
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --target doc
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ${{ steps.strings.outputs.build-output-dir }}/doc/html
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2