Skip to content

Commit 100e83f

Browse files
committed
CIでの日本語フォントレンダリングを修正
ubuntu-latestランナーに日本語フォント(fonts-noto-cjk)がインストールされて いないため、Altair/vl-convert-pythonで生成されるグラフの日本語テキストが 豆腐(□)になっていた。Containerfileにはフォントインストールが記述されて いるが、CIワークフローはコンテナを使わず直接実行していたため反映されていなかった。 https://claude.ai/code/session_01MaV6MhpZ7AJfJGboavZ6ic
1 parent 70cb6a4 commit 100e83f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/blog-analytics.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ jobs:
2626
- name: Set up Python
2727
run: uv python install 3.13
2828

29+
- name: Install Japanese fonts
30+
run: |
31+
sudo apt-get update
32+
sudo apt-get install -y --no-install-recommends fonts-noto-cjk
33+
2934
- name: Install dependencies
3035
working-directory: tools/blog-analytics
3136
run: uv sync

0 commit comments

Comments
 (0)