fix: amsmath for text supp #21
This file contains hidden or 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: Publish Articles | |
| on: | |
| workflow_dispatch: | |
| workflow_call: | |
| push: | |
| paths: | |
| - 'src/**' | |
| - '**.py' | |
| - '**.md' | |
| - '**.c' | |
| - '**.ltx' | |
| jobs: | |
| build_latex: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Publish | |
| uses: xu-cheng/texlive-action@v2 | |
| with: | |
| scheme: small | |
| run: | | |
| tlmgr install \ | |
| collection-luatex \ | |
| luatexja \ | |
| evangelion-jfm \ | |
| xurl \ | |
| silence | |
| apk add clang | |
| mkdir ./public/batch >/dev/null 2>&1 | |
| python3 make.py post | |
| python3 make.py batch | |
| - name: Commit and Push Changes | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add . | |
| git commit -m "chore: automated publish" || echo "no changes to commit" | |
| git push origin HEAD:main |