We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f55521 commit e20949fCopy full SHA for e20949f
1 file changed
action.yml
@@ -12,7 +12,7 @@ inputs:
12
cli-version:
13
description: 'Choose a CLI version. Versions: https://github.com/simplelocalize/simplelocalize-cli/releases'
14
required: true
15
- default: '2.2.0'
+ default: '2.5.0'
16
api-key:
17
description: 'Project API Key'
18
required: false
@@ -39,6 +39,6 @@ runs:
39
run: "curl -o simplelocalize.jar https://get.simplelocalize.io/binaries/${{ inputs.cli-version }}/simplelocalize-cli-${{ inputs.cli-version }}.jar"
40
shell: bash
41
- name: "Execute SimpleLocalize CLI Command"
42
- run: "java -jar simplelocalize.jar ${{ inputs.command }} ${{ inputs.args }}"
+ run: "java -jar simplelocalize.jar ${{ inputs.command }} ${{ inputs.apiKey && '--apiKey' }} ${{ inputs.apiKey }} ${{ inputs.args }}"
43
44
0 commit comments