Skip to content

Commit

Permalink
fix: Strip unicode from CV before PDF
Browse files Browse the repository at this point in the history
  • Loading branch information
blissd committed Mar 10, 2024
1 parent 901b033 commit e81325b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,17 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Sanitize
# Some unicode characters don't cause problems for the PDF.
run: |
tr --delete 'πŸͺͺβœ…πŸŒŸπŸ§‘β€πŸ’» πŸ‘¨β€πŸŽ“πŸ…' README.md > README2.md
- name: Build PDF from Markdown
uses: BaileyJM02/[email protected]
with:
input_path: README.md
input_path: README2.md
output_dir: out
- name: Rename PDF
run: cp out/README.pdf ./david_bliss_cv.pdf
run: cp out/README2.pdf ./david_bliss_cv.pdf
- name: Semantic Release
id: semantic
uses: cycjimmy/semantic-release-action@v4
Expand Down

0 comments on commit e81325b

Please sign in to comment.