File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,26 +17,21 @@ jobs:
1717 # Steps represent a sequence of tasks that will be executed as part of the job
1818 steps :
1919 - name : Checkout Repository
20- uses : actions/checkout@v2
21-
22-
23-
24-
20+ uses : actions/checkout@v2
2521
2622 - name : Get Changed MLX Files
27- id : getfile
28-
23+ id : getfile
2924 run : |
3025 changed_files=$(git diff --name-only || grep '\.mlx')
3126 echo "::set-output name=mlx_files::$changed_files"
3227
3328 - name : Convert MLX to HTML
34- if : steps.find-mlx .outputs.mlx_files != ''
29+ if : steps.getfiles .outputs.mlx_files != ''
3530 run : |
3631 ./run_matlab.sh "${{ steps.getfile.outputs.mlx_files }}"
3732
3833 - name : Commit and Push New File
39- if : steps.check_msg.outputs.run_job == 'true'
34+
4035 run : |
4136 git config user.name "GitHub Action"
4237 git config user.email "action@github.com"
You can’t perform that action at this time.
0 commit comments