update publication: Add Nyx #9
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: Compile | |
on: | |
# Runs on PR targeting the default branch | |
pull_request: | |
branches: ["main"] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: LaTeX compilation | |
# You may pin to the exact commit or the version. | |
# uses: dante-ev/latex-action@49cf7cb5f79e7b2006dbdffea85e02bec0b6244b | |
uses: dante-ev/latex-action@2021-A | |
with: | |
# The root LaTeX file to be compiled | |
root_file: cv.tex | |
# LaTeX engine to be used | |
compiler: latexmk |