mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2025-12-16 10:58:28 +00:00
Update action.yml
This commit is contained in:
parent
1b9d398800
commit
33926125ab
1 changed files with 29 additions and 4 deletions
27
action.yml
27
action.yml
|
|
@ -5,10 +5,35 @@ branding:
|
||||||
icon: check
|
icon: check
|
||||||
color: green
|
color: green
|
||||||
runs:
|
runs:
|
||||||
using: docker
|
using: "composite"
|
||||||
|
steps:
|
||||||
|
- id: setup1
|
||||||
|
uses: docker
|
||||||
image: Dockerfile
|
image: Dockerfile
|
||||||
entrypoint: "/entrypoint.sh"
|
entrypoint: "/entrypoint.sh"
|
||||||
post-entrypoint: "/cleanup.sh"
|
post-entrypoint: "/cleanup.sh"
|
||||||
|
continue-on-error: true
|
||||||
|
- id: setup2
|
||||||
|
if: steps.setup1.outcome == 'failure'
|
||||||
|
uses: docker
|
||||||
|
image: Dockerfile
|
||||||
|
entrypoint: "/entrypoint.sh"
|
||||||
|
post-entrypoint: "/cleanup.sh"
|
||||||
|
continue-on-error: true
|
||||||
|
- id: setup3
|
||||||
|
if: steps.setup2.outcome == 'failure'
|
||||||
|
uses: docker
|
||||||
|
image: Dockerfile
|
||||||
|
entrypoint: "/entrypoint.sh"
|
||||||
|
post-entrypoint: "/cleanup.sh"
|
||||||
|
continue-on-error: true
|
||||||
|
- id: setup4
|
||||||
|
if: steps.setup3.outcome == 'failure'
|
||||||
|
uses: docker
|
||||||
|
image: Dockerfile
|
||||||
|
entrypoint: "/entrypoint.sh"
|
||||||
|
post-entrypoint: "/cleanup.sh"
|
||||||
|
continue-on-error: true
|
||||||
inputs:
|
inputs:
|
||||||
args:
|
args:
|
||||||
description: Additional arguments to the sonar-scanner
|
description: Additional arguments to the sonar-scanner
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue