Skip to content

Commit

Permalink
fix release upload flow
Browse files Browse the repository at this point in the history
  • Loading branch information
ranacrocando authored Sep 16, 2024
1 parent 4183154 commit 0b113ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lilypond.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ jobs:
- name: Find and list all PDF files
id: list_pdfs
run: |
# Find all PDF files in the directory and save them to a variable
files=$(find release_pdfs -name '*.pdf' -print | tr '\n' ' ')
# Find all PDF files and join them into a space-separated string
files=$(find release_pdfs -name '*.pdf' | paste -sd ' ' -)
echo "Found PDF files:"
echo "$files"
echo "::set-output name=pdf_files::$files"
Expand Down

0 comments on commit 0b113ce

Please sign in to comment.