Skip to content

fix docs

fix docs #22

Workflow file for this run

name: Docs Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: '20'
# Pick your own package manager and build script
- run: npm install
- run: npm run dev:prepare
- run: npx nuxt build --preset github_pages
working-directory: ./docs
- name: Upload artifact
working-directory: ./docs
uses: actions/upload-pages-artifact@v3

Check failure on line 23 in .github/workflows/docs.yml

View workflow run for this annotation

GitHub Actions / Docs Deploy

Invalid workflow file

The workflow is not valid. .github/workflows/docs.yml (Line: 23, Col: 9): Unexpected value 'uses' .github/workflows/docs.yml (Line: 24, Col: 9): Unexpected value 'with'
with:
path: ./.output/public
# Deployment job
deploy:
# Add a dependency to the build job
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github_pages environment
environment:
name: github_pages
url: ${{ steps.deployment.outputs.page_url }}
# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4