Skip to content

Commit

Permalink
Merge pull request #877 from scipopt/update-docs
Browse files Browse the repository at this point in the history
Move doc generation to separate workflow
  • Loading branch information
mmghannam authored Aug 2, 2024
2 parents 14a8581 + 2ac19e1 commit c0f7100
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/generate_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Generate documentation

on:
workflow_dispatch:
inputs: {}

jobs:
generate-documentation:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

- name: Generate documentation
run: |
sudo apt-get install doxygen graphviz
bash -ex generate-docs.sh "${{ secrets.GITHUB_TOKEN }}" "gh-pages"

0 comments on commit c0f7100

Please sign in to comment.