File tree Expand file tree Collapse file tree 5 files changed +48
-8
lines changed Expand file tree Collapse file tree 5 files changed +48
-8
lines changed Original file line number Diff line number Diff line change 41
41
run : |
42
42
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
43
43
44
+ - name : Setup pnpm cache
45
+ uses : actions/cache@v3
46
+ with :
47
+ path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
48
+ key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
49
+ restore-keys : |
50
+ ${{ runner.os }}-pnpm-store-
51
+
44
52
- name : Install dependencies
45
53
run : pnpm install --ignore-scripts --frozen-lockfile
46
54
77
85
run : |
78
86
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
79
87
88
+ - name : Setup pnpm cache
89
+ uses : actions/cache@v3
90
+ with :
91
+ path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
92
+ key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
93
+ restore-keys : |
94
+ ${{ runner.os }}-pnpm-store-
95
+
80
96
- name : Install dependencies
81
97
run : pnpm install --ignore-scripts --frozen-lockfile
82
98
@@ -157,6 +173,14 @@ jobs:
157
173
run : |
158
174
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
159
175
176
+ - name : Setup pnpm cache
177
+ uses : actions/cache@v3
178
+ with :
179
+ path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
180
+ key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
181
+ restore-keys : |
182
+ ${{ runner.os }}-pnpm-store-
183
+
160
184
- name : Install dependencies
161
185
run : pnpm install --ignore-scripts --frozen-lockfile
162
186
Original file line number Diff line number Diff line change 42
42
run : |
43
43
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
44
44
45
+ - name : Setup pnpm cache
46
+ uses : actions/cache@v3
47
+ with :
48
+ path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
49
+ key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
50
+ restore-keys : |
51
+ ${{ runner.os }}-pnpm-store-
52
+
45
53
- name : Install dependencies
46
54
run : pnpm install --ignore-scripts --frozen-lockfile
47
55
Original file line number Diff line number Diff line change @@ -40,10 +40,18 @@ jobs:
40
40
run : |
41
41
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
42
42
43
+ - name : Setup pnpm cache
44
+ uses : actions/cache@v3
45
+ with :
46
+ path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
47
+ key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
48
+ restore-keys : |
49
+ ${{ runner.os }}-pnpm-store-
50
+
43
51
- name : Install dependencies
44
52
run : pnpm install --ignore-scripts --frozen-lockfile
45
53
46
54
- name : Publish
47
- run : pnpm publish --tag latest --filter bootstrap-vue-3
55
+ run : pnpm publish --tag latest --filter bootstrap-vue-3 --access=public
48
56
env :
49
- " npm_config_//registry.npmjs.org/:_authToken " : ${{ secrets.NPM_TOKEN }}
57
+ NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
Original file line number Diff line number Diff line change 58
58
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
59
59
if : ${{ steps.release.outputs.releases_created }}
60
60
61
- - uses : actions/ cache@v3
62
- name : Setup pnpm cache
61
+ - name : Setup pnpm cache
62
+ uses : actions/ cache@v3
63
63
with :
64
64
path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
65
65
key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
72
72
if : ${{ steps.release.outputs.releases_created }}
73
73
74
74
- name : Publish
75
- run : pnpm publish --tag develop --filter bootstrap-vue-3
75
+ run : pnpm publish --tag develop --filter bootstrap-vue-3 --access=public
76
76
env :
77
77
NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
78
78
if : ${{ steps.release.outputs.releases_created }}
Original file line number Diff line number Diff line change 58
58
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
59
59
if : ${{ steps.release.outputs.releases_created }}
60
60
61
- - uses : actions/ cache@v3
62
- name : Setup pnpm cache
61
+ - name : Setup pnpm cache
62
+ uses : actions/ cache@v3
63
63
with :
64
64
path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
65
65
key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
72
72
if : ${{ steps.release.outputs.releases_created }}
73
73
74
74
- name : Publish
75
- run : pnpm publish --tag latest --filter bootstrap-vue-3
75
+ run : pnpm publish --tag latest --filter bootstrap-vue-3 --access=public
76
76
env :
77
77
NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
78
78
if : ${{ steps.release.outputs.releases_created }}
You can’t perform that action at this time.
0 commit comments