We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cea1c0 commit 7c13e40Copy full SHA for 7c13e40
action.yml
@@ -74,10 +74,10 @@ runs:
74
distribution: 'temurin'
75
java-version: '20'
76
- name: "Download SimpleLocalize CLI"
77
- run: "https://get.simplelocalize.io/binaries/${{ inputs.cli-version }}/simplelocalize-cli-${{ inputs.cli-version }}.jar"
+ run: "curl -o simplelocalize.jar https://get.simplelocalize.io/binaries/${{ inputs.cli-version }}/simplelocalize-cli-${{ inputs.cli-version }}.jar"
78
shell: bash
79
- name: "Execute SimpleLocalize CLI Command"
80
run: |
81
- java -jar simplelocalize-cli-${{ inputs.cli-version }}.jar ${{ inputs.command }} ${{ inputs.args }}
+ java -jar simplelocalize.jar ${{ inputs.command }} ${{ inputs.args }}
82
83
0 commit comments