Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/markdown2pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,17 @@ jobs:
with:
sources: 'README_WITH_LINKS.md'

- name: Get PDF name from README title
id: get-pdf-name
run: |
title=$(head -1 README.md)
echo "pdf_name=$name" >> $GITHUB_OUTPUT

- name: Upload Document
uses: actions/upload-artifact@v4
id: upload-document
with:
name: 'lab_assignment.pdf'
name: ${{ steps.get-pdf-name.outputs.pdf_name }}
path: ${{ steps.publish-document.outputs.pdf }}

- name: Upload README_WITH_LINKS.md
Expand Down