1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-19 22:19:29 +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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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