Optimize thumbnail before release #5
Workflow file for this run
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: Build cv.pdf | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build_latex: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Build .pdf and thumbnail files | |
uses: xu-cheng/texlive-action@v2 | |
with: | |
scheme: full | |
run: | | |
apk add make imagemagick optipng | |
make | |
- name: Create release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "src/cv.pdf, cv_thumbnail.png" |