Skip to content

Commit e1ca30a

Browse files
mrtysnclaude
andcommitted
Fix PDF release attachment by correcting file path
The workflow was looking for PDF files in the root directory, but they are generated in the pdfs/ directory. This caused all releases to be created without any PDF attachments. Updated the file pattern from 'Mert_Yasin_CV_*.pdf' to 'pdfs/Mert_Yasin_CV_*.pdf' to correctly locate and attach the generated PDF to releases. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent f0cac5a commit e1ca30a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pdf-generation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: 📊 List generated files
6666
run: |
6767
echo "Generated PDF files:"
68-
ls -la *.pdf || echo "No PDF files found"
68+
ls -la pdfs/*.pdf || echo "No PDF files found in pdfs/"
6969
7070
- name: 🏷️ Get version for tag
7171
id: version
@@ -95,7 +95,7 @@ jobs:
9595
9696
📥 Download the PDF below
9797
files: |
98-
Mert_Yasin_CV_*.pdf
98+
pdfs/Mert_Yasin_CV_*.pdf
9999
draft: false
100100
prerelease: false
101101
generate_release_notes: false

Mert_Yasin_CV.pdf

-42 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)