uyuni: use the term "legacy" consistently (#3561) #1426
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# We keep this workflow without using uyuni-docs-helper as it interacts directly with the repository | |
name: Update translation files | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'manager-4.3' | |
- 'manager-4.3-MU-4.3.[0-9][0-9]?' # MU branches | |
- 'manager-5.0' | |
- 'manager-5.0-MU-5.0.[0-9][0-9]?' | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: 'Install po4a' | |
run: | | |
wget https://download.opensuse.org/repositories/systemsmanagement:/Uyuni:/Utils/xUbuntu_20.04/Release.key | |
sudo apt-key add Release.key | |
rm -f Release.key | |
sudo add-apt-repository -y -u 'deb https://download.opensuse.org/repositories/systemsmanagement:/Uyuni:/Utils/xUbuntu_20.04/ ./' | |
sudo apt-get install -y po4a | |
- name: 'Update gettext files' | |
run: | | |
make pot | |
- name: 'Commit changes, if any' | |
uses: EndBug/[email protected] | |
with: | |
author_name: Galaxy CI | |
author_email: [email protected] | |
message: 'Automatic commit: update translation files' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |