Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit a1461ff

Browse files
committed
fix(ci): docker-main not building due to use of npm
1 parent 82888c6 commit a1461ff

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/main-docker.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,18 @@ jobs:
132132

133133
- name: Checkout repository
134134
uses: actions/checkout@v4
135+
- uses: pnpm/action-setup@v4
136+
- name: Set up node & dependencies
137+
uses: actions/setup-node@v4
138+
with:
139+
node-version: 22
140+
cache: 'pnpm'
135141

136142
- name: Install dependencies
137143
run: pnpm install --frozen-lockfile
138144

139145
- name: Update build info
140-
run: npm run chore:update-build-info
146+
run: pnpm run chore:update-build-info
141147

142148
- name: Docker meta
143149
id: meta

0 commit comments

Comments
 (0)