There was an error while loading. Please reload this page.
1 parent 65fd8db commit 16f8401Copy full SHA for 16f8401
1 file changed
.github/workflows/book-build-container.yml
@@ -618,9 +618,9 @@ jobs:
618
# while the public downloadable PDF needs the designed cover. Keep
619
# the canonical Volume I PDF config as the publisher-safe default
620
# and alter only this disposable per-job config for public releases.
621
- if [[ "${{ inputs.include_pdf_cover }}" == "true" \
622
- && "${{ matrix.volume }}" == "vol1" \
623
- && "${{ matrix.format_name }}" == "PDF" ]]; then
+ if [ "${{ inputs.include_pdf_cover }}" = "true" ] \
+ && [ "${{ matrix.volume }}" = "vol1" ] \
+ && [ "${{ matrix.format_name }}" = "PDF" ]; then
624
sed -i 's/^ coverpage: false$/ coverpage: true/' _quarto.yml
625
grep -q '^ coverpage: true$' _quarto.yml
626
echo "📘 Enabled the Volume I cover page for the public PDF artifact"
0 commit comments