How do I use Pre-translation ? #168
-
|
I would like to do the following CMD on Github Action, and I didn't see any parameters in action.yml REF: |
Beta Was this translation helpful? Give feedback.
Answered by
andrii-bodnar
Mar 2, 2023
Replies: 1 comment 1 reply
-
|
Hi @wei18, currently, this Action doesn't support running the name: Run crowdin cli command
on:
workflow_dispatch:
jobs:
cli:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Crowdin CLI
run: npm i -g @crowdin/cli
- name: Run command
run: crowdin -VResult: |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
wei18
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Hi @wei18,
currently, this Action doesn't support running the
pre-translateCLI command but you can use the following approach to run any command including Pre-Translation:Result: