File tree Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -16,24 +16,25 @@ jobs:
16
16
with :
17
17
node-version : 16
18
18
19
- - name : Use the Release Tag Version
20
- run : |
21
- npm version from-git --allow-same-version --no-git-tag-version
22
-
23
- - name: Cache Node Modules
24
- id: cache-node-modules
25
- uses: actions/cache@v3
26
- with:
27
- path: |
28
- node_modules
29
- packages/**/node_modules
30
- !node_modules/.cache
31
- key: node-modules-${{ hashFiles('package.json', 'yarn.lock', 'patches/*') }}
19
+ - name : Cache Node Modules
20
+ id : cache-node-modules
21
+ uses : actions/cache@v3
22
+ with :
23
+ path : |
24
+ node_modules
25
+ packages/**/node_modules
26
+ !node_modules/.cache
27
+ key : node-modules-${{ hashFiles('package.json', 'yarn.lock', 'patches/*') }}
32
28
33
29
- name : Install Modules
34
30
if : steps.cache-node-modules.outputs.cache-hit != 'true'
35
31
run : yarn install --frozen-lockfile
36
32
33
+ - name : Use the Release Tag Version
34
+ run : |
35
+ npm version from-git --allow-same-version --no-git-tag-version --workspaces
36
+ npm version from-git --allow-same-version --no-git-tag-version
37
+
37
38
- name : Build
38
39
run : npm run build
39
40
You can’t perform that action at this time.
0 commit comments