Skip to content

Commit

Permalink
Xbox One: Install gettext to build translations
Browse files Browse the repository at this point in the history
  • Loading branch information
glebm committed Sep 2, 2024
1 parent 2386f90 commit f5edb8b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/xbox_one.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ jobs:
git config --global core.filemode false
git config --global core.autocrlf false
- name: Install gettext
run: >
New-Item -Path . -Name tools-gettext -ItemType Directory -Force &&
Invoke-WebRequest -Uri "https://github.com/vslavik/gettext-tools-windows/releases/download/v0.22.5/gettext-tools-windows-0.22.5.zip" -OutFile tools-gettext.zip -Resume &&
Expand-Archive tools-gettext.zip &&
Remove-Item tools-gettext.zip &&
Add-Content $env:GITHUB_PATH "$((Get-Item tools-gettext).FullName)"
- name: Build
shell: cmd
run: |
Expand Down

0 comments on commit f5edb8b

Please sign in to comment.