Skip to content

Commit

Permalink
Merge branch 'proto-docs-deployment' into stable-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
RoboDoig committed Jul 20, 2023
2 parents dff23c7 + 2bd1db6 commit 0b619a1
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# This is a basic workflow to help you get started with Actions

name: docs-deployment

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request or dispatch events but only for the "stable-docs" branch
push:
branches: [ "stable-docs" ]
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/setup-python@v3

# Install dependencies
- name: Install dependencies
run: |
pip install sphinx sphinxcontrib-matlabdomain renku-sphinx-theme breathe
# Setup doxygen
- name: Setup doxygen
run: |
curl https://www.doxygen.nl/files/doxygen-1.9.7.linux.bin.tar.gz -o ./doxygen-1.9.7.linux.bin.tar.gz
dir
gunzip doxygen-1.9.7.linux.bin.tar.gz
tar xf doxygen-1.9.7.linux.bin.tar
cd doxygen-1.9.7
sudo make install
# Build documentation
- name: Build documentation
run: |
cd docs/doxygen
doxygen
cd ..
make html
dir
# Deploy documentation
- name: Deploy documentation
uses: actions/upload-pages-artifact@v2
with:
path: './docs/build/html'

- name: Deploy to pages
uses: actions/deploy-pages@v2


# # Deploy documentation
# - name: Deploy documentation
# uses: peaceiris/actions-gh-pages@v3
# with:
# publish_branch: gh-pages
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: build/
# force_orphan: true

0 comments on commit 0b619a1

Please sign in to comment.