We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3912c3c commit 1d691e3Copy full SHA for 1d691e3
1 file changed
.github/workflows/release.yml
@@ -28,7 +28,7 @@ jobs:
28
- name: Setup pnpm
29
uses: pnpm/action-setup@v4
30
with:
31
- version: 10
+ version: 10.23.0
32
33
- name: Setup Node.js ${{ matrix.node-version }}
34
uses: actions/setup-node@v4
@@ -77,11 +77,11 @@ jobs:
77
run: |
78
# Use platform-specific build commands
79
if [[ "$RUNNER_OS" == "Linux" ]]; then
80
- npm run build:ci:linux
+ pnpm run build:ci:linux
81
elif [[ "$RUNNER_OS" == "Windows" ]]; then
82
- npm run build:ci:win
+ pnpm run build:ci:win
83
elif [[ "$RUNNER_OS" == "macOS" ]]; then
84
- npm run build:ci:mac
+ pnpm run build:ci:mac
85
fi
86
87
- name: Upload Build Artifacts
0 commit comments