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 55bddef commit 3987b1dCopy full SHA for 3987b1d
action.yml
@@ -39,7 +39,7 @@ inputs:
39
description: "Maximum number of issues allowed for the analysis to succeed"
40
registry-address:
41
required: false
42
- default: "gh"
+ default: ""
43
description: "Alternative registry address (e.g. artprod.mycompany/)"
44
tool:
45
@@ -241,6 +241,9 @@ runs:
241
- name: "Run Codacy CLI"
242
shell: bash
243
run: |
244
+ if [ -n "${{ inputs.registry-address }}" ]; then
245
+ echo "REGISTRY_ADDRESS=${{ inputs.registry-address }}" >> $GITHUB_ENV
246
+ fi
247
if [ "${{ inputs.run-docker-tools }}" == "true" ]; then
248
${{ env.CLI_SCRIPT_PATH }} \
249
analyze \
0 commit comments