chore: server side rendering of math equations (#543) #102
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: update resources | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: install dart sass | |
| run: sudo snap install dart-sass --edge | |
| - name: setup hugo | |
| uses: peaceiris/actions-hugo@v3 | |
| with: | |
| extended: true | |
| hugo-version: 0.147.5 | |
| - name: setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: install | |
| run: | | |
| npm ci | |
| npm run prepare | |
| - name: build | |
| run: npm run build | |
| - name: commit resources | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: 'chore: build resources' | |
| file_pattern: resources/** exampleSite/resources/** |