Skip to content

Merge pull request #6 from SpikeInterface/add_upload_script #15

Merge pull request #6 from SpikeInterface/add_upload_script

Merge pull request #6 from SpikeInterface/add_upload_script #15

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches:
- main # Set this to your default branch
concurrency: # Cancel previous workflows on the same pull request
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy-web-service:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest # Set this to the node version you are using
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages # The branch the action should deploy to.
folder: build # The folder the action should deploy.