Browse Source

Xbox One: Install gettext to build translations

pull/7401/head
Gleb Mazovetskiy 2 years ago
parent
commit
b1c8541904
  1. 8
      .github/workflows/xbox_one.yml

8
.github/workflows/xbox_one.yml

@ -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)\bin"
- name: Build
shell: cmd
run: |

Loading…
Cancel
Save