Skip to content

Commit

Permalink
fix: github actions all caches disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Polasek committed Nov 18, 2021
1 parent ccf9756 commit 2c5b93a
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,27 +66,27 @@ jobs:
uses: actions/setup-node@v1.4.4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Cache NPM dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Cache Gatsby folder
uses: actions/cache@v2
with:
path: .cache
key: ${{ runner.os }}-cache-gatsby
restore-keys: |
${{ runner.os }}-cache-gatsby
- name: Cache Public folder
uses: actions/cache@v2
with:
path: public/
key: ${{ runner.os }}-public-gatsby
restore-keys: |
${{ runner.os }}-public-gatsby
# - name: Cache NPM dependencies
# uses: actions/cache@v2
# with:
# path: ~/.npm
# key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
# restore-keys: |
# ${{ runner.os }}-node-
# - name: Cache Gatsby folder
# uses: actions/cache@v2
# with:
# path: .cache
# key: ${{ runner.os }}-cache-gatsby
# restore-keys: |
# ${{ runner.os }}-cache-gatsby
# - name: Cache Public folder
# uses: actions/cache@v2
# with:
# path: public/
# key: ${{ runner.os }}-public-gatsby
# restore-keys: |
# ${{ runner.os }}-public-gatsby
- uses: actions/download-artifact@v2
with:
name: version-file
Expand Down

0 comments on commit 2c5b93a

Please sign in to comment.