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 1
1
name : docs
2
2
on :
3
- push :
4
- tags :
5
- - " *"
3
+ pull_request :
6
4
7
5
jobs :
8
6
Test :
@@ -34,11 +32,12 @@ jobs:
34
32
- name : Build Documentation
35
33
run : task docs
36
34
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)
60
60
# If commented, the latest supported standard for your compiler is automatically set.
61
61
# set(CMAKE_CXX_STANDARD 20)
62
62
63
+ include(FetchContent)
64
+ if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
65
+ cmake_policy(SET CMP0135 NEW)
66
+ endif()
67
+
63
68
# Add project_options from https://github.com/aminya/project_options
64
69
# 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 )
69
74
FetchContent_MakeAvailable(_project_options)
70
75
include(${_project_options_SOURCE_DIR}/Index.cmake)
71
76
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.25)
5
5
6
6
project (
7
7
project_options_docs
8
- VERSION 0.27.2
8
+ VERSION 0.28.0
9
9
DESCRIPTION "Documentation"
10
10
LANGUAGES NONE )
11
11
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ endif()
37
37
38
38
# Add project_options from https://github.com/aminya/project_options
39
39
# 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 ")
41
41
FetchContent_Declare(
42
42
_project_options
43
43
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()
20
20
21
21
# Add project_options from https://github.com/aminya/project_options
22
22
# 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 ")
24
24
FetchContent_Declare(
25
25
_project_options
26
26
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