diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 341cd5f..1b3dfbd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,9 +20,9 @@ jobs: - uses: actions/cache@v2 with: path: vendor/bundle - key: gems-${{ runner.os }}-${{ matrix.ruby-version }}-${{ hashFiles('**/Gemfile.lock') }} + key: gems-${{ runner.os }}-${{ env.ruby-version }}-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | - gems-${{ runner.os }}-${{ matrix.ruby-version }}- + gems-${{ runner.os }}-${{ env.ruby-version }}- gems-${{ runner.os }}- - run: bundle config set deployment 'true' diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml index 7f1a40a..9262098 100644 --- a/.github/workflows/dev_deploy.yml +++ b/.github/workflows/dev_deploy.yml @@ -20,9 +20,9 @@ jobs: - uses: actions/cache@v2 with: path: vendor/bundle - key: gems-${{ runner.os }}-${{ matrix.ruby-version }}-${{ hashFiles('**/Gemfile.lock') }} + key: gems-${{ runner.os }}-${{ env.ruby-version }}-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | - gems-${{ runner.os }}-${{ matrix.ruby-version }}- + gems-${{ runner.os }}-${{ env.ruby-version }}- gems-${{ runner.os }}- - run: bundle config set deployment 'true'