Skip to content

FIX: Replace search attributes removed from NITRC XNAT (#187) #20

FIX: Replace search attributes removed from NITRC XNAT (#187)

FIX: Replace search attributes removed from NITRC XNAT (#187) #20

Workflow file for this run

name: docs
on:
push:
branches:
- 'master'
jobs:
build:
runs-on: '${{ matrix.os }}'
strategy:
matrix:
os: ['ubuntu-latest']
python-version: ['3.8']
steps:
- name: 'Set up Python ${{ matrix.python-version }}'
uses: actions/setup-python@v3
with:
python-version: '${{ matrix.python-version }}'
- uses: actions/checkout@v3
- run: python --version
- run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install sphinx
run: pip install sphinx sphinx-rtd-theme
- name: Build and deploy to GitHub Pages
run: ./build-docs.sh
env:
PYTHONPATH: $PYTHONPATH:$(pwd)
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}