Browse Source

Use cache and user.name system property on Windows

pull/11652/head
Steve Riesenberg 3 years ago
parent
commit
865bf23ecc
No known key found for this signature in database
GPG Key ID: 5F311AB48A55D521
  1. 8
      .github/workflows/continuous-integration-workflow.yml

8
.github/workflows/continuous-integration-workflow.yml

@ -50,11 +50,15 @@ jobs: @@ -50,11 +50,15 @@ jobs:
if: needs.prerequisites.outputs.runjobs
steps:
- uses: actions/checkout@v2
- name: Set up gradle
uses: spring-io/spring-gradle-build-action@v1
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
- name: Set up gradle user name
run: echo 'systemProp.user.name=spring-builds+github' >> gradle.properties
- name: Build with Gradle
env:
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }}

Loading…
Cancel
Save