File tree Expand file tree Collapse file tree 5 files changed +22
-18
lines changed Expand file tree Collapse file tree 5 files changed +22
-18
lines changed Original file line number Diff line number Diff line change 11name : docs
22on :
3- push :
4- tags :
5- - " *"
3+ pull_request :
64
75jobs :
86 Test :
@@ -34,11 +32,12 @@ jobs:
3432 - name : Build Documentation
3533 run : task docs
3634
37- - name : Deploy Documentation
38- uses : Cecilapp/GitHub-Pages-deploy@v3
39- with :
40- build_dir : docs/build/html/
41- branch : gh-pages
42- 43- env :
44- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
35+ # TODO Automatic deploys fail
36+ # - name: Deploy Documentation
37+ # uses: Cecilapp/GitHub-Pages-deploy@v3
38+ # with:
39+ # build_dir: docs/build/html/
40+ # branch: gh-pages
41+ 42+ # env:
43+ # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -60,12 +60,17 @@ cmake_minimum_required(VERSION 3.20)
6060# If commented, the latest supported standard for your compiler is automatically set.
6161# set(CMAKE_CXX_STANDARD 20)
6262
63+ include(FetchContent)
64+ if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
65+ cmake_policy(SET CMP0135 NEW)
66+ endif()
67+
6368# Add project_options from https://github.com/aminya/project_options
6469# Change the version in the following URL to update the package (watch the releases of the repository for future updates)
65- include(FetchContent )
66- FetchContent_Declare(_project_options URL
67- https://github.com/aminya/project_options/archive/refs/tags/v0.27.2.zip
68- )
70+ set(PROJECT_OPTIONS_VERSION "v0.28.0" )
71+ FetchContent_Declare(
72+ _project_options
73+ URL https://github.com/aminya/project_options/archive/refs/tags/${PROJECT_OPTIONS_VERSION}.zip )
6974FetchContent_MakeAvailable(_project_options)
7075include(${_project_options_SOURCE_DIR}/Index.cmake)
7176
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.25)
55
66project (
77 project_options_docs
8- VERSION 0.27.2
8+ VERSION 0.28.0
99 DESCRIPTION "Documentation"
1010 LANGUAGES NONE)
1111
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ endif()
3737
3838# Add project_options from https://github.com/aminya/project_options
3939# Change the version in the following URL to update the package (watch the releases of the repository for future updates)
40- set(PROJECT_OPTIONS_VERSION "v0.27.2 ")
40+ set(PROJECT_OPTIONS_VERSION "v0.28.0 ")
4141FetchContent_Declare(
4242 _project_options
4343 URL https://github.com/aminya/project_options/archive/refs/tags/${PROJECT_OPTIONS_VERSION}.zip)
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ endif()
2020
2121# Add project_options from https://github.com/aminya/project_options
2222# Change the version in the following URL to update the package (watch the releases of the repository for future updates)
23- set(PROJECT_OPTIONS_VERSION "v0.27.2 ")
23+ set(PROJECT_OPTIONS_VERSION "v0.28.0 ")
2424FetchContent_Declare(
2525 _project_options
2626 URL https://github.com/aminya/project_options/archive/refs/tags/${PROJECT_OPTIONS_VERSION}.zip)
You can’t perform that action at this time.
0 commit comments