Merge current develop #1271
Workflow file for this run
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: Build Gallery | |
on: | |
pull_request: | |
inputs: | |
branch_name: | |
required: true | |
type: string | |
secrets: | |
PAT: | |
required: true | |
env: | |
PAT: ${{ secrets.PAT }} | |
jobs: | |
Test-MSS-docs: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
container: | |
image: openmss/testing-develop | |
steps: | |
- name: Trust My Directory | |
run: git config --global --add safe.directory /__w/MSS/MSS | |
- uses: actions/checkout@v3 | |
- name: Create gallery | |
timeout-minutes: 25 | |
run: | | |
source /opt/conda/bin/activate mssenv \ | |
&& cd $GITHUB_WORKSPACE/docs \ | |
&& python conf.py |