Skip to content

Commit 7a3bcc1

Browse files
authored
ci(release): fix job setup (#826)
1 parent f56c8da commit 7a3bcc1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,17 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v5
11+
with:
12+
fetch-depth: 0
13+
persist-credentials: false
1114
- uses: pnpm/action-setup@v4
1215
- name: Install Node
1316
uses: actions/setup-node@v6
1417
with:
1518
node-version: 22
1619
cache: pnpm
17-
20+
- name: Install Dependencies
21+
run: pnpm install --frozen-lockfile
1822
- name: Release on NPM
1923
run: pnpm semantic-release
2024
env:

0 commit comments

Comments
 (0)