Skip to content

Commit 60d283a

Browse files
committed
Release Notes: Build PDF with a theme that supports extended unicode
This requires using a newer version of asciidoctor-pdf. So in the GitHub CI job that builds the release notes on ubuntu-22.04, use gem to install the latest version over what the package manager installs.
1 parent ef99db8 commit 60d283a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/install_dependencies_releasenotes_ubuntu.sh

+3
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ apt-get update
44
apt-get install -y \
55
asciidoctor \
66
ruby-asciidoctor-pdf
7+
8+
# Update asciidoctor-pdf to the latest version
9+
gem install asciidoctor-pdf

release/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ ReleaseNotes.html: ReleaseNotes.adoc
6767
asciidoctor ReleaseNotes.adoc
6868

6969
ReleaseNotes.pdf: ReleaseNotes.adoc
70-
asciidoctor-pdf ReleaseNotes.adoc
70+
asciidoctor-pdf --theme=default-with-font-fallbacks ReleaseNotes.adoc
7171

7272
# -----
7373

0 commit comments

Comments
 (0)