Skip to content

breaking changes! aiming to support tasks created for MEG and MRI. Ad… #7

breaking changes! aiming to support tasks created for MEG and MRI. Ad…

breaking changes! aiming to support tasks created for MEG and MRI. Ad… #7

Workflow file for this run

on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
jobs:
release:
name: create release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: get version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
- name: set up MATLAB
uses: matlab-actions/setup-matlab@v1
- name: package toolbox
uses: matlab-actions/run-command@v1
with:
command: package("${{ steps.get_version.outputs.VERSION }}", "ihn-psych.mltbx")
- name: create GitHub release
run: |
gh release create v${{ steps.get_version.outputs.VERSION }} ihn-psych.mltbx
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}