Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix DGtalTools doc deploy #454

Merged
merged 4 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/buildAndDocumentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,17 @@ jobs:
cmake .. -DDGtal_DIR=${{runner.workspace}}/DGtal/buildDGtal
wget --no-check-certificate -O "${{runner.workspace}}/DGtalTools/build/DGtal-tagfile" http://dgtal.org/doc/tags/DGtal-tagfile;
make doc > buildDoc.log

- name: Preparing deploy
run: |
git clone --depth 2 https://github.com/DGtal-team/doctools-nightly.git
ls build/
pwd
du -hs build/html
cd build/html
cp -r * ../../doctools-nightly/
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true
# if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true
with:
token: ${{ secrets.DGTALTOOLSDOC }}
branch: master
Expand Down
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# DGtalTools 1.5 (beta)

- *build*
- Fix DGtalTools doc deployement.
(David Coeurjolly and Bertrand Kerautret [#454](https://github.com/DGtal-team/DGtalTools/pull/454))


# DGtalTools 1.4
Expand Down
Loading