Set TX_TOKEN for transifex client
I did some tests on my own fork, and we're writing to ~/.transifexrc but the client can't seem to read that file. maybe issue with $HOME or something. Workaround is to set TX_TOKEN environment variable and now the pesky ~/.transifexrc file is not needed.
This commit is contained in:
parent
d574bb4610
commit
c70e1d0247
|
@ -3,14 +3,6 @@
|
||||||
# SPDX-FileCopyrightText: 2021 yuzu Emulator Project
|
# SPDX-FileCopyrightText: 2021 yuzu Emulator Project
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# Setup RC file for tx
|
|
||||||
cat << EOF > ~/.transifexrc
|
|
||||||
[https://www.transifex.com]
|
|
||||||
rest_hostname = https://rest.api.transifex.com
|
|
||||||
token = $TRANSIFEX_API_TOKEN
|
|
||||||
EOF
|
|
||||||
|
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
echo -e "\e[1m\e[33mBuild tools information:\e[0m"
|
echo -e "\e[1m\e[33mBuild tools information:\e[0m"
|
||||||
|
|
|
@ -23,7 +23,7 @@ jobs:
|
||||||
- name: Update Translation
|
- name: Update Translation
|
||||||
run: ./.ci/scripts/transifex/docker.sh
|
run: ./.ci/scripts/transifex/docker.sh
|
||||||
env:
|
env:
|
||||||
TRANSIFEX_API_TOKEN: ${{ secrets.TRANSIFEX_API_TOKEN }}
|
TX_TOKEN: ${{ secrets.TRANSIFEX_API_TOKEN }}
|
||||||
|
|
||||||
reuse:
|
reuse:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Reference in New Issue