mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-01-30 07:09:59 +01:00
29
.github/workflows/auto-doxygen.yml
vendored
29
.github/workflows/auto-doxygen.yml
vendored
@@ -3,9 +3,7 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@@ -27,12 +25,25 @@ jobs:
|
|||||||
git lfs track "*.qch"
|
git lfs track "*.qch"
|
||||||
- name: Run doxygen
|
- name: Run doxygen
|
||||||
run: doxygen Doxyfile
|
run: doxygen Doxyfile
|
||||||
- run: |
|
- name: Create Pull Request
|
||||||
git config user.name "github-actions[bot]"
|
uses: peter-evans/create-pull-request@v8
|
||||||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
with:
|
||||||
git add .gitattributes ${{ github.workspace }}/doc/QElectroTech.qch -f
|
token: ${{ secrets.MR_TOKEN }}
|
||||||
git commit -m "Push updated QCH file"
|
commit-message: update QCH file
|
||||||
git push
|
committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
||||||
|
title: Update QCH Help file
|
||||||
|
body: |
|
||||||
|
- Updating QT Help file following commit ${{ github.sha }}.
|
||||||
|
- Auto-generated by [create-pull-request][1]
|
||||||
|
|
||||||
|
[1]: https://github.com/peter-evans/create-pull-request
|
||||||
|
branch: update-qch
|
||||||
|
base: doxygen-MR
|
||||||
|
labels: |
|
||||||
|
qch
|
||||||
|
cicd
|
||||||
|
delete-branch: true
|
||||||
|
add-paths: doc/*.qch
|
||||||
- uses: actions/upload-pages-artifact@v3
|
- uses: actions/upload-pages-artifact@v3
|
||||||
with:
|
with:
|
||||||
path: ${{ github.workspace }}/doc/html/
|
path: ${{ github.workspace }}/doc/html/
|
||||||
|
|||||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -3,5 +3,6 @@
|
|||||||
# Qt build output
|
# Qt build output
|
||||||
*.user
|
*.user
|
||||||
# doxygen Doxyfile output
|
# doxygen Doxyfile output
|
||||||
doc/
|
doc/*
|
||||||
|
!doc/QElectroTech.qch
|
||||||
QElectroTech.tag
|
QElectroTech.tag
|
||||||
|
|||||||
2
Doxyfile
2
Doxyfile
@@ -1638,7 +1638,7 @@ QHP_SECT_FILTER_ATTRS =
|
|||||||
# run qhelpgenerator on the generated .qhp file.
|
# run qhelpgenerator on the generated .qhp file.
|
||||||
# This tag requires that the tag GENERATE_QHP is set to YES.
|
# This tag requires that the tag GENERATE_QHP is set to YES.
|
||||||
|
|
||||||
QHG_LOCATION = /usr/lib/x86_64-linux-gnu/qt5/bin/qhelpgenerator
|
QHG_LOCATION = qhelpgenerator
|
||||||
|
|
||||||
# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
|
# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
|
||||||
# generated, together with the HTML files, they form an Eclipse help plugin. To
|
# generated, together with the HTML files, they form an Eclipse help plugin. To
|
||||||
|
|||||||
Reference in New Issue
Block a user