Fix font in card image for readme #27
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
# © 2022,2023 TNG Technology Consulting | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Build PDF artifact | |
on: | |
push: | |
branch: ['*'] | |
jobs: | |
build_pdf: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Build PDF | |
run: ./utils/build_pdf.sh | |
- name: Publish build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cumulus | |
path: | | |
tex/*.pdf | |
tex/*.jpg |