Skip to content

Commit

Permalink
test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
chicco785 committed Apr 12, 2024
1 parent 733fedf commit 85add94
Show file tree
Hide file tree
Showing 20 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/plantuml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Binary file removed Barlow_100.ttf
Binary file not shown.
Binary file removed Barlow_100i.ttf
Binary file not shown.
Binary file removed Barlow_200.ttf
Binary file not shown.
Binary file removed Barlow_200i.ttf
Binary file not shown.
Binary file removed Barlow_300.ttf
Binary file not shown.
Binary file removed Barlow_300i.ttf
Binary file not shown.
Binary file removed Barlow_400.ttf
Binary file not shown.
Binary file removed Barlow_400i.ttf
Binary file not shown.
Binary file removed Barlow_500.ttf
Binary file not shown.
Binary file removed Barlow_500i.ttf
Binary file not shown.
Binary file removed Barlow_600.ttf
Binary file not shown.
Binary file removed Barlow_600i.ttf
Binary file not shown.
Binary file removed Barlow_700.ttf
Binary file not shown.
Binary file removed Barlow_700i.ttf
Binary file not shown.
Binary file removed Barlow_800.ttf
Binary file not shown.
Binary file removed Barlow_800i.ttf
Binary file not shown.
Binary file removed Barlow_900.ttf
Binary file not shown.
Binary file removed Barlow_900i.ttf
Binary file not shown.
4 changes: 3 additions & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 85add94

Please sign in to comment.