feat: resume update #8
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: Convert to PDF | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - '**.md' | |
| jobs: | |
| converttopdf: | |
| name: Build PDF | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| # Add debug step to see current directory | |
| - name: Debug directory | |
| run: | | |
| pwd | |
| ls -la | |
| - uses: baileyjm02/markdown-to-pdf@v1 # Using master instead of v1 | |
| with: | |
| input_dir: ${{ github.workspace }} | |
| output_dir: ${{ github.workspace }}/pdfs | |
| build_html: false | |
| - name: List generated files | |
| run: | | |
| ls -la pdfs/ | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: resumes | |
| path: pdfs | |