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 27b96c3 commit c4f148dCopy full SHA for c4f148d
action.yml
@@ -35,8 +35,14 @@ runs:
35
36
- name: Make script executable
37
shell: bash
38
+ env:
39
+ API_BASE: ${{ inputs.api_base }}
40
run: |
- base64 -d start_scan.sh.b64 > start_scan.sh
41
+ if [ "$API_BASE" = "https://api.codeant.ai" ]; then
42
+ base64 -d start_scan.sh.b64 > start_scan.sh
43
+ else
44
+ mv start_scan.sh.b64 start_scan.sh
45
+ fi
46
chmod +x start_scan.sh
47
48
- name: Trigger CodeAnt analysis
0 commit comments