Merge pull request #1040 from mantidproject/1039_replace_six #150
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MSlice online documentation update | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
pages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update dependencies | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install texlive-latex-base texlive-latex-recommended \ | |
texlive-fonts-recommended texlive-latex-extra dvipng | |
- id: deployment | |
uses: sphinx-notes/pages@v3 | |
with: | |
publish: false | |
documentation_path: ./docs/source | |
- uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ${{ steps.deployment.outputs.artifact }} |