Skip to content

Commit f6798c9

Browse files
committedDec 7, 2022
fix(chore): fixed release files
1 parent 1cc1f0e commit f6798c9

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed
 

‎.github/workflows/on-release.yml

+9-8
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ jobs:
2727
needs: one_run
2828
steps:
2929
- uses: actions/checkout@v2.3.4
30-
- uses: actions/cache@v2.1.4
30+
- uses: actions/checkout@v3
3131
id: cache
3232
with:
33+
node-version: '16'
3334
path: node_modules
3435
key: node_modules-${{ hashFiles('**/package-lock.json') }}
3536
- run: npm ci
@@ -41,11 +42,11 @@ jobs:
4142
runs-on: ubuntu-latest
4243
steps:
4344
- uses: actions/checkout@v2.3.4
44-
- uses: actions/cache@v2.1.4
45+
- uses: actions/checkout@v3
4546
with:
4647
path: node_modules
4748
key: node_modules-${{ hashFiles('**/package-lock.json') }}
48-
- uses: actions/cache@v2.1.4
49+
- uses: actions/checkout@v3
4950
with:
5051
path: dist
5152
key: dist-${{ github.run_id }}
@@ -58,7 +59,7 @@ jobs:
5859
runs-on: ubuntu-latest
5960
steps:
6061
- uses: actions/checkout@v2.3.4
61-
- uses: actions/cache@v2.1.4
62+
- uses: actions/checkout@v3
6263
with:
6364
path: node_modules
6465
key: node_modules-${{ hashFiles('**/package-lock.json') }}
@@ -75,11 +76,11 @@ jobs:
7576
ref: 'gh-pages'
7677
path: 'gh-pages'
7778

78-
- uses: actions/cache@v2.1.4
79+
- uses: actions/checkout@v3
7980
with:
8081
path: node_modules
8182
key: node_modules-${{ hashFiles('**/package-lock.json') }}
82-
- uses: actions/cache@v2.1.4
83+
- uses: actions/checkout@v3
8384
with:
8485
path: dist
8586
key: dist-${{ github.run_id }}
@@ -107,11 +108,11 @@ jobs:
107108
needs: build
108109
steps:
109110
- uses: actions/checkout@v2.3.4
110-
- uses: actions/cache@v2.1.4
111+
- uses: actions/checkout@v3
111112
with:
112113
path: node_modules
113114
key: node_modules-${{ hashFiles('**/package-lock.json') }}
114-
- uses: actions/cache@v2.1.4
115+
- uses: actions/checkout@v3
115116
with:
116117
path: dist
117118
key: dist-${{ github.run_id }}

0 commit comments

Comments
 (0)
Please sign in to comment.