Skip to content

feat: support hugo and doks as github pages #1

feat: support hugo and doks as github pages

feat: support hugo and doks as github pages #1

Workflow file for this run

name: deploy github pages
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: [20.x]

Check failure on line 22 in .github/workflows/gh-pages.yml

View workflow run for this annotation

GitHub Actions / deploy github pages

Invalid workflow file

The workflow is not valid. .github/workflows/gh-pages.yml (Line: 22, Col: 23): A sequence was not expected
- name: Install dependencies
run: npm ci
- name: Run linters
run: npm run lint --if-present
- name: Build site
run: npm run build
- name: Deploy github pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public