We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72007c0 commit 746b825Copy full SHA for 746b825
.github/workflows/deploy.yml
@@ -14,12 +14,13 @@ jobs:
14
- uses: actions/setup-node@v4
15
with:
16
node-version: "20"
17
+ cache: "pnpm"
18
# Pick your own package manager and build script
- - run: npm install
19
+ - run: pnpm install
20
- name: Build
21
env:
22
NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }}
- run: npx nuxt build --preset github_pages
23
+ run: pnpm nuxt build --preset github_pages
24
- name: Upload artifact
25
uses: actions/upload-pages-artifact@v3
26
0 commit comments