We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef2231c commit 7428a79Copy full SHA for 7428a79
.github/workflows/deploy.yml
@@ -19,19 +19,17 @@ jobs:
19
uses: actions/setup-node@v4
20
with:
21
node-version: 20.x
22
- cache: 'pnpm'
+ cache: 'npm'
23
24
- - name: "🧩 Setup pnpm"
25
- uses: pnpm/action-setup@v2
26
- with:
27
- version: 8
+ - name: "🧩 Install dependencies (ci)"
+ run: npm ci --legacy-peer-deps
28
29
- - name: "🧩 Install dependencies"
30
- run: pnpm install
+ - name: "🧩 Install semver for version bump"
+ run: npm install semver
31
32
- name: "🔄 Auto-bump version (main only)"
33
if: github.ref == 'refs/heads/main'
34
- run: pnpm exec node scripts/bumpVersion.js
+ run: node scripts/bumpVersion.js
35
36
- name: '🔧 Configure Git for Automation'
37
0 commit comments