Skip to content

Commit b4e4102

Browse files
Update convert.yml
1 parent 929a05b commit b4e4102

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/convert.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff 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 "[email protected]"

0 commit comments

Comments
 (0)