Skip to content

Commit df3256f

Browse files
committed
fix changesets
1 parent f2abe37 commit df3256f

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"changelog": [
66
"./changelog-formatter.js",
77
{
8-
"repo": "BeeeQueue/sizer"
8+
"repo": "BeeeQueue/esbuild-cf-functions-plugin"
99
}
1010
]
1111
}

.github/workflows/changesets.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,16 @@ jobs:
2626

2727
- run: corepack enable
2828

29+
- name: find pnpm cache path
30+
id: cache
31+
run: echo "::set-output name=path::$(pnpm store path)"
32+
2933
- uses: actions/cache@v3
3034
with:
31-
path: ~/.pnpm-store
32-
key: v1-${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
35+
path: ${{ steps.cache.outputs.path }}
36+
key: v1-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
3337
restore-keys: |
34-
v1-${{ runner.os }}-pnpm-
38+
v1-pnpm-
3539
3640
- name: Install dependencies
3741
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)