Merge pull request #998 from mantidproject/replace_mambaforge_in_work… #110
This file contains hidden or 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: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- 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 | |
- name: Build and Commit | |
uses: sphinx-notes/pages@1.0 | |
with: | |
documentation_path: docs/source | |
- name: Push changes | |
uses: ad-m/github-push-action@v0.6.0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages |