From a5619bb0ee53d18dd4b1deb37c81ec2796970eef Mon Sep 17 00:00:00 2001 From: Goooler Date: Fri, 24 Sep 2021 11:15:07 +0800 Subject: [PATCH] Chore: add cache action in CI (#1201) --- .github/workflows/build-unsigned.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build-unsigned.yaml b/.github/workflows/build-unsigned.yaml index 1758b63b..ec57a587 100644 --- a/.github/workflows/build-unsigned.yaml +++ b/.github/workflows/build-unsigned.yaml @@ -33,6 +33,11 @@ jobs: with: distribution: 'adopt' java-version: 11 + - name: Gradle cache + uses: actions/cache@v2 + with: + path: ~/.gradle/caches + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle/wrapper/gradle-wrapper.properties', '**/buildSrc/src/main/kotlin/**.kt') }} - name: Setup Go uses: actions/setup-go@v2 with: