Sync files from source repo #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |