Skip to content

fix: updated docs page icon #6

fix: updated docs page icon

fix: updated docs page icon #6

Workflow file for this run

name: Nuxt [Docs]
env:
node_version: 20
concurrency:
group: "pages"
cancel-in-progress: false
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}
- name: Enable corepack
run: corepack enable
- name: Install dependencies
working-directory: ./docs
run: npx nypm@latest i
- name: Validate
working-directory: ./docs
run: pnpm validate
- name: Generate documentation
run: pnpm generate
working-directory: ./docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/.output/public
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4