Skip to content

Commit 2b350fa

Browse files
committed
Rename action and repo
1 parent 1108c60 commit 2b350fa

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/bat.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
- name: Perform npm tasks
1414
run: npm run ci
1515

16-
- name: Checkout setup-matlab-action
16+
- name: Checkout setup-matlab
1717
uses: actions/checkout@v2
1818
with:
19-
repository: mathworks-continuous-integration/setup-matlab-action
19+
repository: matlab-actions/setup-matlab
2020
ref: v0.1.0
21-
path: setup-matlab-action
21+
path: setup-matlab
2222
ssh-key: ${{ secrets.SETUP_MATLAB_COMMAND_KEY }}
23-
- name: Perform 'setup-matlab-action'
24-
uses: ./setup-matlab-action
23+
- name: Perform 'setup-matlab'
24+
uses: ./setup-matlab
2525
env:
2626
MATHWORKS_TOKEN: ${{ secrets.MATHWORKS_TOKEN }}
2727

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ the command to ensure that builds fail when necessary. When you use this task,
1212
all of the required files must be on the MATLAB search path.
1313

1414
**Note**: By running the code in this action, you will be executing third-party
15-
code that is licensed under separate terms.
15+
code that is licensed under separate terms.;
1616

1717
## Usage
1818

@@ -22,7 +22,7 @@ You can use this action `with`:
2222
| `command` | (Required) Script, function, or statement to execute. <br/> If the value of `command` is the name of a MATLAB script or function, do not specify the file extension. If you specify more than one MATLAB command, use a comma or semicolon to separate the commands. <br/> **Example**: `myscript` <br/> **Example**: `results = runtests, assertSuccess(results);`
2323

2424
### Using a GitHub-hosted runner?
25-
If you are using a GitHub-hosted runner, you can use the [Set up MATLAB action](https://github.com/mathworks/setup-matlab-action/) to install MATLAB on the runner.
25+
If you are using a GitHub-hosted runner, you can use the [Set up MATLAB action](https://github.com/matlab-actions/setup-matlab/) to install MATLAB on the runner.
2626

2727
## Example
2828

@@ -36,17 +36,17 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
# Set up MATLAB using this action first if running on a GitHub-hosted runner!
39-
- uses: mathworks/setup-matlab-action@v0
39+
- uses: matlab-actions/setup-matlab@v0
4040

4141
- name: Run "disp('hello world')" directly using MATLAB
42-
uses: mathworks/run-matlab-command-action@v0
42+
uses: matlab-actions/run-command@v0
4343
with:
4444
command: disp('hello world')
4545
```
4646
4747
## See also
48-
- [Set up MATLAB action](https://github.com/mathworks/setup-matlab-action/)
49-
- [Run MATLAB Tests](https://github.com/mathworks/run-matlab-tests-action/)
48+
- [Set up MATLAB action](https://github.com/matlab-actions/setup-matlab/)
49+
- [Run MATLAB Tests](https://github.com/matlab-actions/run-tests/)
5050
- [Continuous Integration - MATLAB & Simulink](https://www.mathworks.com/solutions/continuous-integration.html)
5151
5252
## Contact Us

0 commit comments

Comments
 (0)