fix: replace em dashes with regular dashes #7
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: build pdf | |
| on: | |
| push: | |
| branches: [main] | |
| tags: ['v*'] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: compile latex | |
| uses: xu-cheng/latex-action@v3 | |
| with: | |
| root_file: whitepaper.tex | |
| latexmk_use_xelatex: false | |
| - name: upload pdf artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: whitepaper | |
| path: whitepaper.pdf | |
| - name: release pdf on tag | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: whitepaper.pdf |