Skip to content

Commit b20da6d

Browse files
chore(release-action): reorder the action file - 3rd attempt
1 parent 2247691 commit b20da6d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,29 @@ jobs:
1313
uses: actions/checkout@v3
1414
with:
1515
fetch-depth: 0
16-
16+
17+
- name: Install pnpm
18+
uses: pnpm/action-setup@v4
19+
with:
20+
version: latest
21+
run_install: false
22+
1723
- name: Install Node.js
1824
uses: actions/setup-node@v3
1925
with:
2026
node-version: 22
2127
cache: 'pnpm'
2228

23-
- name: Install pnpm
24-
uses: pnpm/action-setup@v2
25-
with:
26-
version: latest
27-
run_install: false
29+
- name: Install Dependencies
30+
run: |
31+
pnpm install --frozen-lockfile
2832
2933
- name: Generate Release Notes
3034
id: release_notes
3135
run: |
3236
pnpm add -g conventional-changelog-cli
3337
conventional-changelog -p angular -i CHANGELOG.md -s -r 0
3438
35-
- name: Install Dependencies
36-
run: |
37-
pnpm install --frozen-lockfile
38-
3939
- name: Build
4040
run: |
4141
pnpm build:win

0 commit comments

Comments
 (0)