File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -17,26 +17,21 @@ jobs:
17
17
# Steps represent a sequence of tasks that will be executed as part of the job
18
18
steps :
19
19
- name : Checkout Repository
20
- uses : actions/checkout@v2
21
-
22
-
23
-
24
-
20
+ uses : actions/checkout@v2
25
21
26
22
- name : Get Changed MLX Files
27
- id : getfile
28
-
23
+ id : getfile
29
24
run : |
30
25
changed_files=$(git diff --name-only || grep '\.mlx')
31
26
echo "::set-output name=mlx_files::$changed_files"
32
27
33
28
- name : Convert MLX to HTML
34
- if : steps.find-mlx .outputs.mlx_files != ''
29
+ if : steps.getfiles .outputs.mlx_files != ''
35
30
run : |
36
31
./run_matlab.sh "${{ steps.getfile.outputs.mlx_files }}"
37
32
38
33
- name : Commit and Push New File
39
- if : steps.check_msg.outputs.run_job == 'true'
34
+
40
35
run : |
41
36
git config user.name "GitHub Action"
42
37
git config user.email "[email protected] "
You can’t perform that action at this time.
0 commit comments