Skip to content

Commit d3e518a

Browse files
committed
fix: gh action publish workflow
1 parent 87d5b2d commit d3e518a

File tree

1 file changed

+4
-19
lines changed

1 file changed

+4
-19
lines changed

.github/workflows/svelte-ci.yml

+4-19
Original file line numberDiff line numberDiff line change
@@ -34,27 +34,13 @@ jobs:
3434
runs-on: ubuntu-22.04
3535
steps:
3636
- 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
4338
with:
4439
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
5341
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
5844
- name: Install dependencies
5945
run: pnpm install --no-frozen-lockfile
6046
- name: Build
@@ -63,4 +49,3 @@ jobs:
6349
run: pnpm publish --tag latest --access=public --no-git-checks
6450
env:
6551
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
66-
NPM_CONFIG_PROVENANCE: true

0 commit comments

Comments
 (0)