diff --git a/.github/workflows/plantuml.yml b/.github/workflows/plantuml.yml index df1d0a5..3069661 100644 --- a/.github/workflows/plantuml.yml +++ b/.github/workflows/plantuml.yml @@ -13,4 +13,4 @@ jobs: botEmail: ${{ secrets.BOT_EMAIL }} botGithubToken: ${{ secrets.GITHUB_TOKEN }} enableReviewComment: true - installGoogleFont: Noto+Serif:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i + installGoogleFont: Barlow:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i diff --git a/Barlow_100.ttf b/Barlow_100.ttf deleted file mode 100644 index 6c6181b..0000000 Binary files a/Barlow_100.ttf and /dev/null differ diff --git a/Barlow_100i.ttf b/Barlow_100i.ttf deleted file mode 100644 index d7df37e..0000000 Binary files a/Barlow_100i.ttf and /dev/null differ diff --git a/Barlow_200.ttf b/Barlow_200.ttf deleted file mode 100644 index 15ca476..0000000 Binary files a/Barlow_200.ttf and /dev/null differ diff --git a/Barlow_200i.ttf b/Barlow_200i.ttf deleted file mode 100644 index 7e91748..0000000 Binary files a/Barlow_200i.ttf and /dev/null differ diff --git a/Barlow_300.ttf b/Barlow_300.ttf deleted file mode 100644 index 1701a9d..0000000 Binary files a/Barlow_300.ttf and /dev/null differ diff --git a/Barlow_300i.ttf b/Barlow_300i.ttf deleted file mode 100644 index f87a189..0000000 Binary files a/Barlow_300i.ttf and /dev/null differ diff --git a/Barlow_400.ttf b/Barlow_400.ttf deleted file mode 100644 index c9cfa3a..0000000 Binary files a/Barlow_400.ttf and /dev/null differ diff --git a/Barlow_400i.ttf b/Barlow_400i.ttf deleted file mode 100644 index cd548e0..0000000 Binary files a/Barlow_400i.ttf and /dev/null differ diff --git a/Barlow_500.ttf b/Barlow_500.ttf deleted file mode 100644 index 5e91922..0000000 Binary files a/Barlow_500.ttf and /dev/null differ diff --git a/Barlow_500i.ttf b/Barlow_500i.ttf deleted file mode 100644 index 6d31f24..0000000 Binary files a/Barlow_500i.ttf and /dev/null differ diff --git a/Barlow_600.ttf b/Barlow_600.ttf deleted file mode 100644 index 53949b1..0000000 Binary files a/Barlow_600.ttf and /dev/null differ diff --git a/Barlow_600i.ttf b/Barlow_600i.ttf deleted file mode 100644 index ba0dc3c..0000000 Binary files a/Barlow_600i.ttf and /dev/null differ diff --git a/Barlow_700.ttf b/Barlow_700.ttf deleted file mode 100644 index 728ca50..0000000 Binary files a/Barlow_700.ttf and /dev/null differ diff --git a/Barlow_700i.ttf b/Barlow_700i.ttf deleted file mode 100644 index eb2f888..0000000 Binary files a/Barlow_700i.ttf and /dev/null differ diff --git a/Barlow_800.ttf b/Barlow_800.ttf deleted file mode 100644 index b7c4cdf..0000000 Binary files a/Barlow_800.ttf and /dev/null differ diff --git a/Barlow_800i.ttf b/Barlow_800i.ttf deleted file mode 100644 index 46a2c4f..0000000 Binary files a/Barlow_800i.ttf and /dev/null differ diff --git a/Barlow_900.ttf b/Barlow_900.ttf deleted file mode 100644 index 447a9bd..0000000 Binary files a/Barlow_900.ttf and /dev/null differ diff --git a/Barlow_900i.ttf b/Barlow_900i.ttf deleted file mode 100644 index e78bba8..0000000 Binary files a/Barlow_900i.ttf and /dev/null differ diff --git a/entrypoint.sh b/entrypoint.sh index 28d86c4..f9fcb7d 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -17,7 +17,9 @@ if [ -z "$INPUT_INSTALLGOOGLEFONT" ]; then echo "No font family defined" else echo "Installing $INPUT_INSTALLGOOGLEFONT" - ./google-font-download -f ttf --url="https://fonts.google.com/?selection.family=$INPUT_INSTALLGOOGLEFONT" -o /usr/share/fonts/font.ttf + ./google-font-download -f ttf --url="https://fonts.google.com/?selection.family=$INPUT_INSTALLGOOGLEFONT" + mkdir /usr/share/fonts/googlefonts + mv *.ttf /usr/share/fonts/googlefonts fc-cache -fv fi