Skip to content

Commit

Permalink
cargo make
Browse files Browse the repository at this point in the history
  • Loading branch information
gknopf-aranya committed Jan 28, 2025
1 parent 03a1f00 commit 70b53b8
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/doxygen-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,21 @@ jobs:
permissions:
contents: write
steps:
- uses: aranya-project/doxygen-github-pages-action@main
- uses: actions/checkout@v4

- uses: ./.github/actions/setup

- name: Generate Doxygen docs
run: |
cargo make build-capi-docs
- name: Add a .nojekyll file before deploying to GitHub pages so files with underscores work
run: |
touch ${{ github.workspace }}/crates/aranya-client-capi/docs/html/.nojekyll
- name: Deploy to GitHub Pages
uses: aranya-project/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: ${{ github.workspace }}/crates/aranya-client-capi/docs/html
config_file: ${{ github.workspace }}/crates/aranya-client-capi/Doxyfile
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 70b53b8

Please sign in to comment.