From 430fbc4ff503844f742206a5b3f10d42bb530383 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Sat, 18 Apr 2020 12:56:49 +0200 Subject: [PATCH] Remove caching in deployment scripts --- .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