From 5816f944513821fbe5883c469b0c5425066ab4e9 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Sat, 18 Apr 2020 13:15:06 +0200 Subject: [PATCH] Remove caching in deployment scripts (#6309) --- .github/workflows/deployment.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 03d6b558c2d..271d9f56406 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -54,27 +54,6 @@ jobs: uses: actions/setup-java@v1 with: java-version: 14 - - uses: actions/cache@v1 - name: Restore gradle cache - with: - path: ~/.gradle/caches - key: ${{ runner.os }}-gradle-cache-${{ hashFiles('**/*.gradle') }} - # in case there is no cache for the current OS, fall back to any other OS - restore-keys: | - ${{ runner.os }}-gradle-cache- - Linux-gradle-cache-${{ hashFiles('**/*.gradle') }} - Windows-gradle-cache-${{ hashFiles('**/*.gradle') }} - macOS-gradle-cache-${{ hashFiles('**/*.gradle') }} - - uses: actions/cache@v1 - name: Cache gradle wrapper - with: - path: ~/.gradle/wrapper - key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} - # in case there is no cache for the current OS, fall back to any other OS - restore-keys: | - Linux-gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} - Windows-gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} - macOS-gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} - name: Build runtime image run: ./gradlew -PprojVersion="${{ steps.gitversion.outputs.AssemblySemVer }}" -PprojVersionInfo="${{ steps.gitversion.outputs.InformationalVersion }}" jlinkZip - name: Build installer