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 fb818d0 commit 03aa569Copy full SHA for 03aa569
.github/workflows/build.yml
@@ -43,14 +43,13 @@ jobs:
43
key: ${{ runner.os }}-sonar
44
restore-keys: ${{ runner.os }}-sonar
45
46
- - name: Debug secret source
47
- run: echo ${{ github.secret_source }}
48
-
49
- name: Build and analyze
50
- if: ${{ github.secret_source == 'None' }}
+ if: ${{ github.secret_source != 'Actions' }}
51
env:
52
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
53
- run: ./gradlew build jacocoTestReport
+ run: |
+ echo "Secret source: \"${{ github.secret_source }}\""
+ ./gradlew build jacocoTestReport
54
55
- name: Build and analyze (Sonar)
56
if: ${{ github.secret_source == 'Actions' }}
0 commit comments