fix: release build pipeline

This commit is contained in:
2024-07-08 18:48:11 +02:00
parent 65a5a2517e
commit 2163a63a7c
2 changed files with 4 additions and 126 deletions

View File

@@ -25,14 +25,14 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18.16.x
cache: "npm"
cache: "pnpm"
- name: ⏬ Install Node dependencies
run: npm ci
run: pnpm install
- name: 🔥 Optimize icon font
run: npm run minify-icons
run: pnpm minify-icons
- name: 🔨 Build site
run: npm run build
run: pnpm build
- name: 📦 Upload build artifacts
uses: actions/upload-artifact@v3.1.2