Skip to content

2018 compatibility

2018 compatibility #9

Workflow file for this run

on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
release:
name: create release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up MATLAB
uses: matlab-actions/setup-matlab@v2
- name: package toolbox
uses: matlab-actions/run-command@v2
with:
command: package("${{ github.ref_name }}", "ihn-psych.mltbx")
- name: create GitHub release
run: |
gh release create "${{ github.ref_name }}" ihn-psych.mltbx
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}