diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index 9e90bf5..283f320 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -11,7 +11,7 @@ env: jobs: build: name: Build and publish documentation - runs-on: macos-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -22,7 +22,7 @@ jobs: - name: Install dependencies run: | - brew install doxygen + sudo apt-get install doxygen pip3 install jinja2 Pygments - name: Build @@ -34,4 +34,4 @@ jobs: uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./build/doxygen/html + publish_dir: ./build/doxygen/html \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index e4e05ae..848fd34 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ option(INSTALL_ONLY "Enable for installation only" OFF) # Note: update this to your new project's name and version project( Recti - VERSION 1.0.8 + VERSION 1.0.9 LANGUAGES CXX )