File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,27 +12,22 @@ jobs:
1212 - run : corepack enable
1313 - uses : actions/setup-node@v4
1414 with :
15- node-version : " 20"
16- # Pick your own package manager and build script
17- - run : npm install
18- - run : npx nuxt build --preset github_pages
15+ node-version : " 22"
16+ - run : pnpm install --frozen-lockfile
17+ - run : pnpm build --preset github_pages
1918 - name : Upload artifact
2019 uses : actions/upload-pages-artifact@v3
2120 with :
2221 path : ./.output/public
23- # Deployment job
22+
2423 deploy :
25- # Add a dependency to the build job
2624 needs : build
27- # Grant GITHUB_TOKEN the permissions required to make a Pages deployment
2825 permissions :
29- pages : write # to deploy to Pages
30- id-token : write # to verify the deployment originates from an appropriate source
31- # Deploy to the github_pages environment
26+ pages : write
27+ id-token : write
3228 environment :
3329 name : github-pages
3430 url : ${{ steps.deployment.outputs.page_url }}
35- # Specify runner + deployment step
3631 runs-on : ubuntu-latest
3732 steps :
3833 - name : Deploy to GitHub Pages
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export default defineAppConfig({
6161 { label : 'Docs' , to : '/docs' } ,
6262 { label : 'Examples' , to : '/docs/getting-started/examples' } ,
6363 { label : 'Changelog' , to : '/changelog' } ,
64- { label : 'Blog' , to : '/blog' } ,
64+ // { label: 'Blog', to: '/blog' },
6565 ] ,
6666 } ,
6767 footer : {
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments