We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ae148a commit 99bcca5Copy full SHA for 99bcca5
.github/workflows/export-keynote.yml
@@ -23,6 +23,7 @@ jobs:
23
# You can override this at dispatch time with the input above
24
KEYNOTE_GLOB: ${{ github.event.inputs.keynote_glob || '**/*.key' }}
25
OUT_DIR: out-pdf
26
+ TARGET_PDF: cmsc430-2025-fall.pdf
27
28
steps:
29
- name: Check out
@@ -116,7 +117,7 @@ jobs:
116
117
fi
118
# Copy PDFs into the worktree
119
mkdir -p "_pdfs/${DEST_DIR}"
- cp -f ${OUT_DIR}/*.pdf "_pdfs/${DEST_DIR}/" || true
120
+ cp -f "../$OUT_DIR/$TARGET_PDF" "./$TARGET_PDF"
121
# Commit only if there are changes
122
cd _pdfs
123
git add -A
0 commit comments