Skip to content

Commit f25247a

Browse files
authored
Update deploy-docker.yml
1 parent 9f67db9 commit f25247a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/deploy-docker.yml

+9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ jobs:
1515
steps:
1616
- name: Checkout repository
1717
uses: actions/checkout@v4
18+
- name: Install pnpm
19+
uses: pnpm/action-setup@v4
20+
with:
21+
version: 10
1822
- name: Set up Node.js
1923
uses: actions/setup-node@v4
2024
with:
@@ -34,11 +38,16 @@ jobs:
3438

3539
build:
3640
runs-on: ubuntu-latest
41+
needs: [pnpm-install]
3742
env:
3843
VERSION_TAG: ${{ github.ref_name }}-${{ github.sha }}
3944
steps:
4045
- name: Checkout repository
4146
uses: actions/checkout@v4
47+
- name: Install pnpm
48+
uses: pnpm/action-setup@v4
49+
with:
50+
version: 10
4251
- name: Set up Node.js
4352
uses: actions/setup-node@v4
4453
with:

0 commit comments

Comments
 (0)