Skip to content

Commit

Permalink
ED-4000 feat: Github actions instead of Jenkins-24
Browse files Browse the repository at this point in the history
  • Loading branch information
princegupta1131 committed Jun 11, 2024
1 parent 5e8bd55 commit 821f06b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,15 @@ jobs:
# Debug: Print the masked SONAR_TOKEN
- name: Print SONAR_TOKEN
run: echo "SONAR_TOKEN=${{ secrets.SONAR_TOKEN }}PWR****123"

# Ensure sonar-project.properties exists and print its content for debugging
- name: Check sonar-project.properties
run: |
if [ -f sonar-project.properties ]; then
echo "Found sonar-project.properties"
cat sonar-project.properties
else
echo "sonar-project.properties not found"
fi
# Run SonarScanner in the specified directory
- name: Run SonarScanner
env:
Expand Down

0 comments on commit 821f06b

Please sign in to comment.