Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Deploy to Cloudflare Pages

on:
push:
branches: [main]
pull_request:

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
pull-requests: write
steps:
- uses: actions/checkout@v4

- name: Install Quarto
uses: quarto-dev/quarto-actions/setup@v2

- name: Render site
run: quarto render

- name: Deploy to Cloudflare Pages
id: deploy
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: pages deploy _site --project-name=eegmanysteps --branch=${{ github.head_ref || 'main' }}

- name: Comment preview URL on PR
if: github.event_name == 'pull_request'
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `Preview deployment: ${process.env.DEPLOYMENT_URL}`
})
env:
DEPLOYMENT_URL: ${{ steps.deploy.outputs.deployment-url }}
2 changes: 1 addition & 1 deletion datasets.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Available MoBI datasets"
---

This is a table of available EEG datasets on [OpenNeuro](https://openneuro.org/search/modality/eeg?query=%7B%22modality_selected%22%3A%22EEG%22%7D) for the keywords specified in the table. If you find datasets missing, please feel free to add them via a PR on GitHub [here](https://github.com/EEGManySteps/eegmanysteps-website/pulls).
This is a table of available EEG datasets on [OpenNeuro](https://openneuro.org/search/modality/eeg?query=%7B%22modality_selected%22%3A%22EEG%22%7D) for the keywords specified in the table. If you find datasets missing, please feel free to add them via a PR on GitHub [here](https://github.com/EEGManySteps/eegmanysteps.github.io/pulls).

| Dataset | Study | Tasks | Authors | Keywords | Mobility Tasks | Sampling Frequency | Participants | EEG Channels | EMG Channels | IMU Tracked Points | IMU Sensor Placement | MoCap Channels | MoCap Sensor Placement | Misc Channel Count | Gait Events Shared|
|---------------------------------------------------------------|---------------------------------------------------------|--------------------------------------------------------------|--------------------------------------------|----------|----------------|--------------------|--------------|--------------|--------------|---------------------|--------------------------------|---------------|--------------------------|--------------------|-------------------|
Expand Down
Loading