File tree 1 file changed +4
-19
lines changed
1 file changed +4
-19
lines changed Original file line number Diff line number Diff line change @@ -34,27 +34,13 @@ jobs:
34
34
runs-on : ubuntu-22.04
35
35
steps :
36
36
- uses : actions/checkout@v4
37
- - uses : actions/setup-node@v3
38
- with :
39
- node-version : lts/*
40
- registry-url : ' https://registry.npmjs.org/'
41
- - uses : pnpm/action-setup@v2
42
- id : pnpm-install
37
+ - uses : pnpm/action-setup@v3
43
38
with :
44
39
version : 9
45
- run_install : false
46
- - name : Get PNPM Store Directory
47
- id : pnpm-cache
48
- shell : bash
49
- run : |
50
- echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
51
- - name : Setup PNPM Cache
52
- uses : actions/cache@v3
40
+ - uses : actions/setup-node@v4
53
41
with :
54
- path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
55
- key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
56
- restore-keys : |
57
- ${{ runner.os }}-pnpm-store-
42
+ node-version : lts/*
43
+ registry-url : https://registry.npmjs.org
58
44
- name : Install dependencies
59
45
run : pnpm install --no-frozen-lockfile
60
46
- name : Build
63
49
run : pnpm publish --tag latest --access=public --no-git-checks
64
50
env :
65
51
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
66
- NPM_CONFIG_PROVENANCE : true
You can’t perform that action at this time.
0 commit comments