From dbc91e43bd0e3f36dc7e52d3480870721e76af5b Mon Sep 17 00:00:00 2001 From: Mingshen Sun Date: Thu, 31 Dec 2020 23:48:38 -0800 Subject: [PATCH] Fix restore key --- .github/workflows/deploying.yml | 8 ++++---- .github/workflows/testing.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploying.yml b/.github/workflows/deploying.yml index 1a56d11..d43e67e 100644 --- a/.github/workflows/deploying.yml +++ b/.github/workflows/deploying.yml @@ -22,27 +22,27 @@ jobs: path: vendor/bundle key: ${{ runner.os }}-gems-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | - ${{ runner.os }}-gems- + ${{ runner.os }}-gems-${{ secrets.CACHE_VERSION }}- - uses: actions/cache@v2 id: carthage-cache with: path: Carthage key: ${{ runner.os }}-carthage-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/Cartfile.resolved') }} restore-keys: | - ${{ runner.os }}-carthage- + ${{ runner.os }}-carthage-${{ secrets.CACHE_VERSION }}- - uses: actions/cache@v2 with: path: Pods key: ${{ runner.os }}-pods-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/Podfile.lock') }} restore-keys: | - ${{ runner.os }}-pods- + ${{ runner.os }}-pods-${{ secrets.CACHE_VERSION }}- - uses: actions/cache@v2 id: gopenpgp-cache with: path: go key: ${{ runner.os }}-gopenpgp-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/gopenpgp_build.sh') }} restore-keys: | - ${{ runner.os }}-gopenpgp- + ${{ runner.os }}-gopenpgp-${{ secrets.CACHE_VERSION }}- - name: Bundle Install run: | bundle config path vendor/bundle diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 17f5b15..d709960 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -16,27 +16,27 @@ jobs: path: vendor/bundle key: ${{ runner.os }}-gems-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | - ${{ runner.os }}-gems- + ${{ runner.os }}-gems-${{ secrets.CACHE_VERSION }}- - uses: actions/cache@v2 id: carthage-cache with: path: Carthage key: ${{ runner.os }}-carthage-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/Cartfile.resolved') }} restore-keys: | - ${{ runner.os }}-carthage- + ${{ runner.os }}-carthage-${{ secrets.CACHE_VERSION }}- - uses: actions/cache@v2 with: path: Pods key: ${{ runner.os }}-pods-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/Podfile.lock') }} restore-keys: | - ${{ runner.os }}-pods- + ${{ runner.os }}-pods-${{ secrets.CACHE_VERSION }}- - uses: actions/cache@v2 id: gopenpgp-cache with: path: go key: ${{ runner.os }}-gopenpgp-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/gopenpgp_build.sh') }} restore-keys: | - ${{ runner.os }}-gopenpgp- + ${{ runner.os }}-gopenpgp-${{ secrets.CACHE_VERSION }}- - name: Bundle Install run: | bundle config path vendor/bundle