-
Notifications
You must be signed in to change notification settings - Fork 316
40 lines (32 loc) · 1.07 KB
/
convert.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: MATLAB MLX to HTML Conversion
# Trigger the workflow on push events but only for the main branch
on:
push:
branches:
- gh-pages
paths:
- '**.mlx'
# The jobs key is a collection of the jobs to run
jobs:
convert-mlx-to-html:
# The type of runner that the job will run on
runs-on: self-hosted
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Get Changed MLX Files
id: getfile
run: |
changed_files=$(git diff --name-only || grep '\.mlx')
echo "::set-output name=mlx_file::$changed_files"
- name: Convert MLX to HTML
run: |
./run_matlab.sh "${{ steps.getfile.outputs.mlx_file }}"
- name: Commit and Push New File
run: |
git config user.name "GitHub Action"
git config user.email "[email protected]"
git add .
git commit -m "Add new HTML file" || echo "No changes to commit"
git push -f origin gh-pages