Skip to content

Commit bfa0671

Browse files
committed
fix: disable blog for now
1 parent c6ae04f commit bfa0671

4 files changed

Lines changed: 7 additions & 12 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff 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

app/app.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: {

0 commit comments

Comments
 (0)