File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -353,6 +353,10 @@ jobs:
353
353
image : ubuntu-24.04
354
354
runs-on : ${{ matrix.config.image }}
355
355
steps :
356
+ - name : Install Doxygen
357
+ run : |
358
+ sudo apt-get install -y doxygen
359
+
356
360
- uses : actions/checkout@v4
357
361
with :
358
362
ref : ${{needs.get_version.outputs.tag_name}}
@@ -365,10 +369,11 @@ jobs:
365
369
run : |
366
370
ls ${{github.workspace}}
367
371
368
- - uses : mattnotmitt/doxygen-action@v1.12.0
369
- with :
370
- doxyfile-path : " ${{github.workspace}}/docs/Doxyfile"
371
- working-directory : " ${{github.workspace}}/docs"
372
+ - name : Run Doxygen
373
+ run : |
374
+ cd "${{github.workspace}}/docs"
375
+ doxygen ./Doxyfile
376
+ cd ..
372
377
373
378
- name : Pack
374
379
run : |
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ project(dxFeedGraalCxxApi)
17
17
18
18
include (cmake/ParseVersion.cmake )
19
19
20
- set (DXFCXX_VERSION "v4.2.0-rc6 " CACHE STRING "The dxFeed Graal CXX API package version" )
20
+ set (DXFCXX_VERSION "v4.2.0-rc7 " CACHE STRING "The dxFeed Graal CXX API package version" )
21
21
22
22
dxfcxx_ParseVersion (${DXFCXX_VERSION} DXFCXX_MAJOR_VERSION DXFCXX_MINOR_VERSION DXFCXX_PATCH_VERSION DXFCXX_SUFFIX_VERSION )
23
23
You can’t perform that action at this time.
0 commit comments