Skip to content

Commit

Permalink
added generation GRADLE_PROPERTIES
Browse files Browse the repository at this point in the history
  • Loading branch information
mfriesen committed Nov 16, 2024
1 parent afed4c5 commit cfde021
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ jobs:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Restore gradle.properties
env:
GRADLE_PROPERTIES: ${{ secrets.GRADLE_PROPERTIES }}
shell: bash
run: |
mkdir -p ~/.gradle/
echo "GRADLE_USER_HOME=${HOME}/.gradle" >> $GITHUB_ENV
echo "${GRADLE_PROPERTIES}" > ~/.gradle/gradle.properties
- name: Execute Gradle build
run: ./gradlew clean build --refresh-dependencies --info
- name: Upload test reports
Expand Down

0 comments on commit cfde021

Please sign in to comment.