You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm testing it out using Act. I'm seeing the following output for the tx parts:
[Update translation files from Transifex/build] ⭐ Run tx init --force --no-interactive --traceback
[Update translation files from Transifex/build] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /home/brandon/Code/pih/openmrs-owa-orderentry/workflow/4] user=
|
| _____ _ __
| |_ _| __ __ _ _ __ ___(_)/ _| _____ __
| | || '__/ _` | '_ \/ __| | |_ / _ \ \/ /
| | || | | (_| | | | \__ \ | _| __/> <
| |_||_| \__,_|_| |_|___/_|_| \___/_/\_\
|
|
| Welcome to the Transifex Client! Please follow the instructions to
| initialize your project.
|
| tx INFO: Creating config file...
| tx INFO: No credentials file was found at /root/.transifexrc.
| tx INFO: Created /root/.transifexrc
| tx INFO: Updating /root/.transifexrc file...
| tx INFO: Using TX_TOKEN environment variable. Credentials won't be saved to .transifexrc.
| tx INFO: Done.
[Update translation files from Transifex/build] ✅ Success - tx init --force --no-interactive --traceback
[Update translation files from Transifex/build] ⭐ Run tx pull -a --minimum-perc=1 --traceback --debug
[Update translation files from Transifex/build] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /home/brandon/Code/pih/openmrs-owa-orderentry/workflow/5] user=
| tx DEBUG: Path to tx is /home/brandon/Code/pih/openmrs-owa-orderentry.
| tx DEBUG: Config file is /home/brandon/Code/pih/openmrs-owa-orderentry/.tx/config
| tx DEBUG: .transifexrc file is at /root
| tx INFO: Done.
[Update translation files from Transifex/build] ✅ Success - tx pull -a --minimum-perc=1 --traceback --debug
So tx pull is evidently not actually doing anything, but neither is it offering any information that could be used to debug, even with both --debug and --traceback provided. It's even exiting with status code 0. This leaves me at a total impasse.
The text was updated successfully, but these errors were encountered:
The problem was that tx init was overwriting the already-existing .tx/config file. Of course, tx pull should give some kind of useful output about the configuration in this case.
For the edification of future generations, this is the working workflow configuration:
Glad you figured it out. There is always room for improvement, so we will check out what you said.
However, we are also working on a new version of the TX client, which can be found here... https://github.com/transifex/cli. It is still considered an alpha version, but it is fairly stable, and it also uses the new version of the API (v3).
I'm trying to set up a GitHub Action which uses
tx pull
to update translations. Here is the action:I'm testing it out using Act. I'm seeing the following output for the
tx
parts:So
tx pull
is evidently not actually doing anything, but neither is it offering any information that could be used to debug, even with both--debug
and--traceback
provided. It's even exiting with status code 0. This leaves me at a total impasse.The text was updated successfully, but these errors were encountered: