Skip to content

Commit 222d535

Browse files
committed
update the version to fix deployment
1 parent deacd6a commit 222d535

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/gh-pages.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node-version: [12.x]
14+
node-version: [14.x]
1515

1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v1
1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v1
19+
uses: actions/setup-node@v2
2020
with:
2121
node-version: ${{ matrix.node-version }}
22-
- name: Cache node modules
23-
uses: actions/cache@v2
24-
env:
25-
cache-name: cache-node-modules
26-
with:
27-
path: ~/.npm
28-
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
29-
restore-keys: |
30-
${{ runner.os }}-build-${{ env.cache-name }}-
31-
${{ runner.os }}-build-
32-
${{ runner.os }}-
22+
# - name: Cache node modules
23+
# uses: actions/cache@v2
24+
# env:
25+
# cache-name: cache-node-modules
26+
# with:
27+
# path: ~/.npm
28+
# key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
29+
# restore-keys: |
30+
# ${{ runner.os }}-build-${{ env.cache-name }}-
31+
# ${{ runner.os }}-build-
32+
# ${{ runner.os }}-
3333
- run: npm install
3434
- run: npm run build
3535
- name: deploy

0 commit comments

Comments
 (0)