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 f876430 commit 174b9c2Copy full SHA for 174b9c2
1 file changed
.github/workflows/ci.yml
@@ -42,9 +42,16 @@ jobs:
42
GRADLE_PROPERTIES: ${{ secrets.GRADLE_PROPERTIES }}
43
shell: bash
44
run: |
45
- # Print the entire GRADLE_PROPERTIES value in logs
46
- echo "GRADLE_PROPERTIES: $GRADLE_PROPERTIES"
+ mkdir -p ~/.gradle/
+ echo "GRADLE_USER_HOME=${HOME}/.gradle" >> $GITHUB_ENV
47
+ echo "${GRADLE_PROPERTIES}" > ~/.gradle/gradle.properties
48
49
+ - name: Upload gradle properties report
50
+ uses: actions/upload-artifact@v4
51
+ with:
52
+ name: gradle-properties
53
+ path: |
54
+ **/.gradle/gradle.properties
55
- name: Run checks
56
run: ./gradlew filepickerlibrary:spotlessCheck detekt
57
0 commit comments