-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #768 from bids-standard/rel/0.14.0
REL: 0.14.0
- Loading branch information
Showing
6 changed files
with
110 additions
and
84 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Documentation | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- maint/* | ||
- rel/* | ||
- docs/* | ||
tags: | ||
- '*' | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
include: | ||
- python-version: 3.9 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
fetch-depth: 0 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Display Python version | ||
run: python -c "import sys; print(sys.version)" | ||
- name: Create virtual environment | ||
run: tools/ci/create_venv.sh | ||
- name: Install pybids | ||
run: tools/ci/install_extras.sh | ||
env: | ||
EXTRA_PIP_FLAGS: "" | ||
CHECK_TYPE: doc | ||
- name: Build documentation | ||
run: | | ||
source tools/ci/activate.sh | ||
make -C doc html | ||
- name: Upload docs as artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: doc/_build/html | ||
- name: Deploy (on tags) | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: doc/_build/html | ||
force_orphan: true | ||
user_name: "BIDS Maintenance" | ||
user_email: [email protected] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ Christopher J. Markiewicz <[email protected]> | |
Christopher J. Markiewicz <[email protected]> <[email protected]> | ||
Chris Holdgraf <[email protected]> | ||
Chris Holdgraf <[email protected]> <[email protected]> | ||
Dimitri Papadopoulos Orfanos <[email protected]> | ||
Dylan M. Nielson <[email protected]> | ||
Dylan M. Nielson <[email protected]> <[email protected]> | ||
Evgenii Kalenkovich <[email protected]> | ||
|
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
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