Update .woodpecker.yml

This commit is contained in:
2025-11-26 20:53:17 +00:00
parent 40641575f9
commit ffd7dd05af

View File

@@ -14,18 +14,20 @@ steps:
image: sonarsource/sonar-scanner-cli image: sonarsource/sonar-scanner-cli
secrets: [ SONAR_TOKEN, SONAR_URL ] secrets: [ SONAR_TOKEN, SONAR_URL ]
commands: commands:
- sonar-scanner \ - >
-Dsonar.login=$SONAR_TOKEN \ sonar-scanner
-Dsonar.host.url=$SONAR_URL \ -Dsonar.login=$SONAR_TOKEN
-Dsonar.projectKey=dummy-app \ -Dsonar.host.url=$SONAR_URL
-Dsonar.sources=. -Dsonar.projectKey=dummy-app
-Dsonar.sources=.
- name: notify - name: notify
image: curlimages/curl image: curlimages/curl
secrets: [ WEBHOOK_URL ] secrets: [ WEBHOOK_URL ]
commands: commands:
- echo "Build completed for $CI_COMMIT_SHA" \ - >
| curl -X POST -H "Content-Type: text/plain" $WEBHOOK_URL echo "Build completed: $CI_COMMIT_SHA" |
curl -X POST -H "Content-Type: text/plain" $WEBHOOK_URL
- name: push-to-github - name: push-to-github
image: alpine/git image: alpine/git