1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-26 10:41:01 +02:00

Fix publish workflow for synced translation report (#2203)

Building the synced translation report requires gettext for `msgmerge.`
This commit is contained in:
Andrew Walbran
2024-07-08 16:31:20 +01:00
committed by GitHub
parent c39b6b01d7
commit 82b9f6950b

View File

@ -36,6 +36,11 @@ jobs:
- name: Setup Rust cache
uses: ./.github/workflows/setup-rust-cache
- name: Install Gettext
run: |
sudo apt update
sudo apt install gettext
- name: Install mdbook
uses: ./.github/workflows/install-mdbook