Skip to content

Bump data/datasets/examples from 8f91664 to 0410c41 (#752) #206

Bump data/datasets/examples from 8f91664 to 0410c41 (#752)

Bump data/datasets/examples from 8f91664 to 0410c41 (#752) #206

Workflow file for this run

---
name: Build for gh-pages
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Force to use color
env:
FORCE_COLOR: true
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
- name: Set up Python
uses: astral-sh/setup-uv@v7
with:
python-version: 3.12
- name: Set up node
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install dependencies and update content from submodules
run: make all
- name: Build site
run: uv run mkdocs build
- name: Deploy pages
if: github.event_name == 'push'
run: |
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
uv run mkdocs gh-deploy --force
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPOSITORY: bids-standard/bids-website